Module Values.MediaPackageV2GroupSettingsSource

Media Package V2 Group Settings

Sourcetype nonrec t = {
  1. captionLanguageMappings : CaptionLanguageMapping.t list option;
    (*

    Mapping of up to 4 caption channels to caption languages.

    *)
  2. id3Behavior : CmafId3Behavior.t option;
    (*

    Set to ENABLED to enable ID3 metadata insertion. To include metadata, you configure other parameters in the output group, or you add an ID3 action to the channel schedule.

    *)
  3. klvBehavior : CmafKLVBehavior.t option;
    (*

    If set to passthrough, passes any KLV data from the input source to this output.

    *)
  4. nielsenId3Behavior : CmafNielsenId3Behavior.t option;
    (*

    If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.

    *)
  5. scte35Type : Scte35Type.t option;
    (*

    Type of scte35 track to add. none or scte35WithoutSegmentation

    *)
  6. segmentLength : int option;
    (*

    The nominal duration of segments. The units are specified in SegmentLengthUnits. The segments will end on the next keyframe after the specified duration, so the actual segment length might be longer, and it might be a fraction of the units.

    *)
  7. segmentLengthUnits : CmafIngestSegmentLengthUnits.t option;
    (*

    Time unit for segment length parameter.

    *)
  8. timedMetadataId3Frame : CmafTimedMetadataId3Frame.t option;
    (*

    Set to none if you don't want to insert a timecode in the output. Otherwise choose the frame type for the timecode.

    *)
  9. timedMetadataId3Period : int option;
    (*

    If you set up to insert a timecode in the output, specify the frequency for the frame, in seconds.

    *)
  10. timedMetadataPassthrough : CmafTimedMetadataPassthrough.t option;
    (*

    Set to enabled to pass through ID3 metadata from the input sources.

    *)
  11. additionalDestinations : MediaPackageAdditionalDestinations.t list option;
    (*

    Optional an array of additional destinational HTTP destinations for the OutputGroup outputs

    *)
}
Sourceval make : ?captionLanguageMappings:??? -> ?id3Behavior:??? -> ?klvBehavior:??? -> ?nielsenId3Behavior:??? -> ?scte35Type:??? -> ?segmentLength:??? -> ?segmentLengthUnits:??? -> ?timedMetadataId3Frame:??? -> ?timedMetadataId3Period:??? -> ?timedMetadataPassthrough:??? -> ?additionalDestinations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `List of [> `Structure 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