Module Values.EmbeddedSourceSettingsSource

Settings for embedded captions Source

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

    Specify whether this set of input captions appears in your outputs in both 608 and 708 format. If you choose Upconvert, MediaConvert includes the captions data in two ways: it passes the 608 data through using the 608 compatibility bytes fields of the 708 wrapper, and it also translates the 608 data into 708.

    *)
  2. source608ChannelNumber : int option;
    (*

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

    *)
  3. source608TrackNumber : int option;
    (*

    Specifies the video track index used for extracting captions. The system only supports one input video track, so this should always be set to '1'.

    *)
  4. terminateCaptions : EmbeddedTerminateCaptions.t option;
    (*

    By default, the service terminates any unterminated captions at the end of each input. If you want the caption to continue onto your next input, disable this setting.

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