Module Values.MsSmoothGroupSettingsSource

Settings related to your Microsoft Smooth Streaming output package. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/outputs-file-ABR.html.

Sourcetype nonrec t = {
  1. additionalManifests : MsSmoothAdditionalManifest.t list option;
    (*

    By default, the service creates one .ism Microsoft Smooth Streaming manifest for each Microsoft Smooth Streaming output group in your job. This default manifest references every output in the output group. To create additional manifests that reference a subset of the outputs in the output group, specify a list of them here.

    *)
  2. audioDeduplication : MsSmoothAudioDeduplication.t option;
    (*

    COMBINE_DUPLICATE_STREAMS combines identical audio encoding settings across a Microsoft Smooth output group into a single audio stream.

    *)
  3. destination : string option;
    (*

    Use Destination to specify the S3 output location and the output filename base. Destination accepts format identifiers. If you do not specify the base filename in the URI, the service will use the filename of the input file. If your job has multiple inputs, the service uses the filename of the first input file.

    *)
  4. destinationSettings : DestinationSettings.t option;
    (*

    Settings associated with the destination. Will vary based on the type of destination

    *)
  5. encryption : MsSmoothEncryptionSettings.t option;
    (*

    If you are using DRM, set DRM System to specify the value SpekeKeyProvider.

    *)
  6. fragmentLength : int option;
    (*

    Specify how you want MediaConvert to determine the fragment length. Choose Exact to have the encoder use the exact length that you specify with the setting Fragment length. This might result in extra I-frames. Choose Multiple of GOP to have the encoder round up the segment lengths to match the next GOP boundary.

    *)
  7. fragmentLengthControl : MsSmoothFragmentLengthControl.t option;
    (*

    Specify how you want MediaConvert to determine the fragment length. Choose Exact to have the encoder use the exact length that you specify with the setting Fragment length. This might result in extra I-frames. Choose Multiple of GOP to have the encoder round up the segment lengths to match the next GOP boundary.

    *)
  8. manifestEncoding : MsSmoothManifestEncoding.t option;
    (*

    Use Manifest encoding to specify the encoding format for the server and client manifest. Valid options are utf8 and utf16.

    *)
}
Sourceval make : ?additionalManifests:??? -> ?audioDeduplication:??? -> ?destination:??? -> ?destinationSettings:??? -> ?encryption:??? -> ?fragmentLength:??? -> ?fragmentLengthControl:??? -> ?manifestEncoding:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `List of [> `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) list ] list | `String of string | `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Enum 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