Module Values.CmafPackageSource

A CMAF packaging configuration.

Sourcetype nonrec t = {
  1. encryption : CmafEncryption.t option;
  2. hlsManifests : HlsManifest.t list;
    (*

    A list of HLS manifest configurations.

    *)
  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. segmentDurationSeconds : int option;
    (*

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

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