Module Values.WavSettingsSource

Required when you set Codec to the value WAV.

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

    Specify Bit depth, 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 64. Choose 0 to follow the number of channels from your input audio. Otherwise, manually choose from 1, 2, 4, 6, and so on, up to 64.

    *)
  3. format : WavFormat.t option;
    (*

    Specify the file format for your wave audio output. To use a RIFF wave format: Keep the default value, RIFF. If your output audio is likely to exceed 4GB in file size, or if you otherwise need the extended support of the RF64 format: Choose RF64. If your player only supports the extensible wave format: Choose Extensible.

    *)
  4. sampleRate : int option;
    (*

    Sample rate in Hz.

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