Module Encoder.External


module External: sig .. end

exception No_process

type restart_condition =
| Delay of int
| Metadata
| No_condition

type t = {
   channels : int;
   samplerate : int;
   header : bool;
   restart_on_crash : bool;
   restart : restart_condition;
   process : string;
}
val to_string : t -> string