Module Values.OutputGroupSettingsSource

Output Group settings, including type

Sourcetype nonrec t = {
  1. cmafGroupSettings : CmafGroupSettings.t option;
    (*

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

    *)
  2. dashIsoGroupSettings : DashIsoGroupSettings.t option;
    (*

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

    *)
  3. fileGroupSettings : FileGroupSettings.t option;
    (*

    Settings related to your File output group. MediaConvert uses this group of settings to generate a single standalone file, rather than a streaming package.

    *)
  4. hlsGroupSettings : HlsGroupSettings.t option;
    (*

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

    *)
  5. msSmoothGroupSettings : MsSmoothGroupSettings.t option;
    (*

    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.

    *)
  6. perFrameMetrics : FrameMetricType.t list option;
    (*

    Optionally choose one or more per frame metric reports to generate along with your output. You can use these metrics to analyze your video output according to one or more commonly used image quality metrics. You can specify per frame metrics for output groups or for individual outputs. When you do, MediaConvert writes a CSV (Comma-Separated Values) file to your S3 output destination, named after the output name and metric type. For example: videofile_PSNR.csv Jobs that generate per frame metrics will take longer to complete, depending on the resolution and complexity of your output. For example, some 4K jobs might take up to twice as long to complete. Note that when analyzing the video quality of your output, or when comparing the video quality of multiple different outputs, we generally also recommend a detailed visual review in a controlled environment. You can choose from the following per frame metrics: * PSNR: Peak Signal-to-Noise Ratio * SSIM: Structural Similarity Index Measure * MS_SSIM: Multi-Scale Similarity Index Measure * PSNR_HVS: Peak Signal-to-Noise Ratio, Human Visual System * VMAF: Video Multi-Method Assessment Fusion * QVBR: Quality-Defined Variable Bitrate. This option is only available when your output uses the QVBR rate control mode. * SHOT_CHANGE: Shot Changes

    *)
  7. type_ : OutputGroupType.t option;
    (*

    Type of output group (File group, Apple HLS, DASH ISO, Microsoft Smooth Streaming, CMAF)

    *)
}
Sourceval make : ?cmafGroupSettings:??? -> ?dashIsoGroupSettings:??? -> ?fileGroupSettings:??? -> ?hlsGroupSettings:??? -> ?msSmoothGroupSettings:??? -> ?perFrameMetrics:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `List of [> `Enum of string | `Structure of (string * [> `Enum of string | `Integer of int | `List of [> `String of string ] list | `String of string ]) list ] list | `String of string | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `String 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 ]) 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