Module Values.DashPackageSource

A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.

Sourcetype nonrec t = {
  1. dashManifests : DashManifest.t list;
    (*

    A list of DASH manifest configurations.

    *)
  2. encryption : DashEncryption.t option;
  3. includeEncoderConfigurationInSegments : bool option;
    (*

    When includeEncoderConfigurationInSegments is set to true, MediaPackage places your encoder's Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and Video Parameter Set (VPS) metadata in every video segment instead of in the init fragment. This lets you use different SPS/PPS/VPS settings for your assets during content playback.

    *)
  4. includeIframeOnlyStream : bool option;
    (*

    When enabled, an I-Frame only stream will be included in the output.

    *)
  5. periodTriggers : Zz__PeriodTriggersElement.t list option;
    (*

    A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not be partitioned into more than one period. If the list contains "ADS", new periods will be created where the Asset contains SCTE-35 ad markers.

    *)
  6. segmentDurationSeconds : int option;
    (*

    Duration (in seconds) of each segment. Actual segments will be rounded to the nearest multiple of the source segment duration.

    *)
  7. segmentTemplateFormat : SegmentTemplateFormat.t option;
    (*

    Determines the type of SegmentTemplate included in the Media Presentation Description (MPD). When set to NUMBER_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Number$ media URLs. When set to TIME_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Time$ media URLs. When set to NUMBER_WITH_DURATION, only a duration is included in each SegmentTemplate, with $Number$ media URLs.

    *)
}
Sourceval context_ : string
Sourceval make : ?encryption:??? -> ?includeEncoderConfigurationInSegments:??? -> ?includeIframeOnlyStream:??? -> ?periodTriggers:??? -> ?segmentDurationSeconds:??? -> ?segmentTemplateFormat:??? -> dashManifests:DashManifest.t list -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `Enum of string | `Integer of int | `List of [> `Enum of string | `Structure of (string * [> `Enum of string | `Integer of int | `String of string | `Structure of (string * [> `Enum of string | `Integer of int ]) list ]) list ] list | `Structure of (string * [> `Structure of (string * [> `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Enum 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