Module Values.AudioPropertiesSource

Details about the media file's audio track.

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

    The bit depth of the audio track.

    *)
  2. bitRate : Awso.Import.Int64.t option;
    (*

    The bit rate of the audio track, in bits per second.

    *)
  3. channels : int option;
    (*

    The number of audio channels in the audio track.

    *)
  4. frameRate : FrameRate.t option;
    (*

    The frame rate of the video or audio track, expressed as a fraction with numerator and denominator values.

    *)
  5. languageCode : string option;
    (*

    The language code of the audio track, in three character ISO 639-3 format.

    *)
  6. sampleRate : int option;
    (*

    The sample rate of the audio track.

    *)
}
Sourceval make : ?bitDepth:??? -> ?bitRate:??? -> ?channels:??? -> ?frameRate:??? -> ?languageCode:??? -> ?sampleRate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int | `Long of Awso.Import.Int64.t | `String of string | `Structure of (string * [> `Integer of int ]) list ]) 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