Module Encoder.Vorbis


module Vorbis: sig .. end

type quality = float 
type bitrate = int 

type mode =
| VBR of quality
| CBR of bitrate
| ABR of bitrate option * bitrate option
* bitrate option

type t = {
   channels : int;
   mode : mode;
   samplerate : int;
   fill : int option;
}
val string_of_mode : mode -> string
val to_string : t -> string