Module Values.Mp2SettingsSource

Mp2 Settings

Sourcetype nonrec t = {
  1. bitrate : float option;
    (*

    Average bitrate in bits/second.

    *)
  2. codingMode : Mp2CodingMode.t option;
    (*

    The MPEG2 Audio coding mode. Valid values are codingMode10 (for mono) or codingMode20 (for stereo).

    *)
  3. sampleRate : float option;
    (*

    Sample rate in Hz.

    *)
}
Sourceval make : ?bitrate:??? -> ?codingMode:??? -> ?sampleRate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of float | `Enum of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t