Module Values.HlsPackageSource

An HTTP Live Streaming (HLS) packaging configuration.

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

    A list of HLS manifest configurations.

    *)
  3. includeDvbSubtitles : bool option;
    (*

    When enabled, MediaPackage passes through digital video broadcasting (DVB) subtitles into the output.

    *)
  4. segmentDurationSeconds : int option;
    (*

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

    *)
  5. useAudioRenditionGroup : bool option;
    (*

    When enabled, audio streams will be placed in rendition groups in the output.

    *)
}
Sourceval context_ : string
Sourceval make : ?encryption:??? -> ?includeDvbSubtitles:??? -> ?segmentDurationSeconds:??? -> ?useAudioRenditionGroup:??? -> 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 * [> `Enum 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