Module Values.AudioLanguageSelectionSource

Audio Language Selection

Sourcetype nonrec t = {
  1. languageCode : string;
    (*

    Selects a specific three-letter language code from within an audio source.

    *)
  2. languageSelectionPolicy : AudioLanguageSelectionPolicy.t option;
    (*

    When set to "strict", the transport stream demux strictly identifies audio streams by their language descriptor. If a PMT update occurs such that an audio stream matching the initially selected language is no longer present then mute will be encoded until the language returns. If "loose", then on a PMT update the demux will choose another audio stream in the program with the same stream type if it can't find one with the same language.

    *)
}
Sourceval context_ : string
Sourceval make : ?languageSelectionPolicy:??? -> languageCode:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String 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