Module Values.DashPackageSource

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

Sourcetype nonrec t = {
  1. adTriggers : AdTriggers.t option;
  2. adsOnDeliveryRestrictions : AdsOnDeliveryRestrictions.t option;
  3. encryption : DashEncryption.t option;
  4. includeIframeOnlyStream : bool option;
    (*

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

    *)
  5. manifestLayout : ManifestLayout.t option;
    (*

    Determines the position of some tags in the Media Presentation Description (MPD). When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation. When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level. When set to DRM_TOP_LEVEL_COMPACT, content protection elements are placed the MPD level and referenced at the AdaptationSet level.

    *)
  6. manifestWindowSeconds : int option;
    (*

    Time window (in seconds) contained in each manifest.

    *)
  7. minBufferTimeSeconds : int option;
    (*

    Minimum duration (in seconds) that a player will buffer media before starting the presentation.

    *)
  8. minUpdatePeriodSeconds : int option;
    (*

    Minimum duration (in seconds) between potential changes to the Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD).

    *)
  9. 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 Channel source contains SCTE-35 ad markers.

    *)
  10. profile : Profile.t option;
    (*

    The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled. When set to "DVB-DASH_2014", DVB-DASH 2014 compliant output is enabled.

    *)
  11. segmentDurationSeconds : int option;
    (*

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

    *)
  12. 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.

    *)
  13. streamSelection : StreamSelection.t option;
  14. suggestedPresentationDelaySeconds : int option;
    (*

    Duration (in seconds) to delay live content before presentation.

    *)
  15. utcTiming : UtcTiming.t option;
    (*

    Determines the type of UTCTiming included in the Media Presentation Description (MPD)

    *)
  16. utcTimingUri : string option;
    (*

    Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO, HTTP-HEAD or HTTP-XSDATE

    *)
}
Sourceval make : ?adTriggers:??? -> ?adsOnDeliveryRestrictions:??? -> ?encryption:??? -> ?includeIframeOnlyStream:??? -> ?manifestLayout:??? -> ?manifestWindowSeconds:??? -> ?minBufferTimeSeconds:??? -> ?minUpdatePeriodSeconds:??? -> ?periodTriggers:??? -> ?profile:??? -> ?segmentDurationSeconds:??? -> ?segmentTemplateFormat:??? -> ?streamSelection:??? -> ?suggestedPresentationDelaySeconds:??? -> ?utcTiming:??? -> ?utcTimingUri:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `Enum of string | `Integer of int | `List of [> `Enum of string ] list | `String of string | `Structure of (string * [> `Enum of string | `Integer of int | `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