Module Encoder.Flac


module Flac: sig .. end


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