Module Values.CaptionDescriptionSource

Caption Description

Sourcetype nonrec t = {
  1. accessibility : AccessibilityType.t option;
    (*

    Indicates whether the caption track implements accessibility features such as written descriptions of spoken dialog, music, and sounds. This signaling is added to HLS output group and MediaPackage output group.

    *)
  2. captionSelectorName : string;
    (*

    Specifies which input caption selector to use as a caption source when generating output captions. This field should match a captionSelector name.

    *)
  3. destinationSettings : CaptionDestinationSettings.t option;
    (*

    Additional settings for captions destination that depend on the destination type.

    *)
  4. languageCode : string option;
    (*

    ISO 639-2 three-digit code: http://www.loc.gov/standards/iso639-2/

    *)
  5. languageDescription : string option;
    (*

    Human readable information to indicate captions available for players (eg. English, or Spanish).

    *)
  6. name : string;
    (*

    Name of the caption description. Used to associate a caption description with an output. Names must be unique within an event.

    *)
  7. captionDashRoles : DashRoleCaption.t list option;
    (*

    Identifies the DASH roles to assign to this captions output. Applies only when the captions output is configured for DVB DASH accessibility signaling.

    *)
  8. dvbDashAccessibility : DvbDashAccessibility.t option;
    (*

    Identifies DVB DASH accessibility signaling in this captions output. Used in Microsoft Smooth Streaming outputs to signal accessibility information to packagers.

    *)
}
Sourceval context_ : string
Sourceval make : ?accessibility:??? -> ?destinationSettings:??? -> ?languageCode:??? -> ?languageDescription:??? -> ?captionDashRoles:??? -> ?dvbDashAccessibility:??? -> captionSelectorName:string -> name:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of string | `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of int | `String of string | `Structure of (string * [> `String of string ]) list ]) list ]) 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