Module Values.Scte20SourceSettingsSource

Scte20 Source Settings

Sourcetype nonrec t = {
  1. convert608To708 : Scte20Convert608To708.t option;
    (*

    If upconvert, 608 data is both passed through via the "608 compatibility bytes" fields of the 708 wrapper as well as translated into 708. 708 data present in the source content will be discarded.

    *)
  2. source608ChannelNumber : int option;
    (*

    Specifies the 608/708 channel number within the video track from which to extract captions. Unused for passthrough.

    *)
}
Sourceval make : ?convert608To708:??? -> ?source608ChannelNumber:??? -> 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