Module Encoder.WAV


module WAV: sig .. end


type t = {
   samplerate : int;
   samplesize : int;
   channels : int;
   duration : float option;
   header : bool;
}
val to_string : t -> string