Module Values.FlacSettingsSource

Required when you set Codec, under AudioDescriptions>CodecSettings, to the value FLAC.

Sourcetype nonrec t = {
  1. bitDepth : int option;
    (*

    Specify Bit depth (BitDepth), in bits per sample, to choose the encoding quality for this audio track.

    *)
  2. channels : int option;
    (*

    Specify the number of channels in this output audio track. Valid values are 0, 1, and even numbers up to 8. Choose 0 to follow the number of channels from your input audio. Otherwise, manually choose from 1, 2, 4, 6, and 8.

    *)
  3. sampleRate : int option;
    (*

    Sample rate in Hz.

    *)
}
Sourceval make : ?bitDepth:??? -> ?channels:??? -> ?sampleRate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int ]) 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