package voaacenc

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
exception Failed
exception Not_implemented
exception Invalid_voaacenc_argument
exception Input_buffer_too_small
exception Output_buffer_too_small
exception Unknown of int
val string_of_exception : exn -> string option
type parameters = {
  1. samplerate : int;
  2. channels : int;
  3. bitrate : int;
  4. adts : bool;
}
type t
val create : parameters -> t
val encode_string : t -> string -> string * int
val encode_substring : t -> string -> int -> int -> string * int
val encode_buffer : t -> Stdlib.Buffer.t -> string