Module Values.VideoCodecSettingsSource

Video codec settings contains the group of settings related to video encoding. The settings in this group vary depending on the value that you choose for Video codec. For each codec enum that you choose, define the corresponding settings object. The following lists the codec enum, settings object pairs. * AV1, Av1Settings * AVC_INTRA, AvcIntraSettings * FRAME_CAPTURE, FrameCaptureSettings * GIF, GifSettings * H_264, H264Settings * H_265, H265Settings * MPEG2, Mpeg2Settings * PRORES, ProresSettings * UNCOMPRESSED, UncompressedSettings * VC3, Vc3Settings * VP8, Vp8Settings * VP9, Vp9Settings * XAVC, XavcSettings

Sourcetype nonrec t = {
  1. av1Settings : Av1Settings.t option;
    (*

    Required when you set Codec, under VideoDescription>CodecSettings to the value AV1.

    *)
  2. avcIntraSettings : AvcIntraSettings.t option;
    (*

    Required when you choose AVC-Intra for your output video codec. For more information about the AVC-Intra settings, see the relevant specification. For detailed information about SD and HD in AVC-Intra, see https://ieeexplore.ieee.org/document/7290936. For information about 4K/2K in AVC-Intra, see https://pro-av.panasonic.net/en/avc-ultra/AVC-ULTRAoverview.pdf.

    *)
  3. codec : VideoCodec.t option;
    (*

    Specifies the video codec. This must be equal to one of the enum values defined by the object VideoCodec. To passthrough the video stream of your input without any video encoding: Choose Passthrough. More information about passthrough codec support and job settings requirements, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/video-passthrough-feature-restrictions.html

    *)
  4. frameCaptureSettings : FrameCaptureSettings.t option;
    (*

    Required when you set Codec to the value FRAME_CAPTURE.

    *)
  5. gifSettings : GifSettings.t option;
    (*

    Required when you set (Codec) under (VideoDescription)>(CodecSettings) to the value GIF

    *)
  6. h264Settings : H264Settings.t option;
    (*

    Required when you set Codec to the value H_264.

    *)
  7. h265Settings : H265Settings.t option;
    (*

    Settings for H265 codec

    *)
  8. mpeg2Settings : Mpeg2Settings.t option;
    (*

    Required when you set Codec to the value MPEG2.

    *)
  9. passthroughSettings : PassthroughSettings.t option;
    (*

    Optional settings when you set Codec to the value Passthrough.

    *)
  10. proresSettings : ProresSettings.t option;
    (*

    Required when you set Codec to the value PRORES.

    *)
  11. uncompressedSettings : UncompressedSettings.t option;
    (*

    Required when you set Codec, under VideoDescription>CodecSettings to the value UNCOMPRESSED.

    *)
  12. vc3Settings : Vc3Settings.t option;
    (*

    Required when you set Codec to the value VC3

    *)
  13. vp8Settings : Vp8Settings.t option;
    (*

    Required when you set Codec to the value VP8.

    *)
  14. vp9Settings : Vp9Settings.t option;
    (*

    Required when you set Codec to the value VP9.

    *)
  15. xavcSettings : XavcSettings.t option;
    (*

    Required when you set Codec to the value XAVC.

    *)
}
Sourceval make : ?av1Settings:??? -> ?avcIntraSettings:??? -> ?codec:??? -> ?frameCaptureSettings:??? -> ?gifSettings:??? -> ?h264Settings:??? -> ?h265Settings:??? -> ?mpeg2Settings:??? -> ?passthroughSettings:??? -> ?proresSettings:??? -> ?uncompressedSettings:??? -> ?vc3Settings:??? -> ?vp8Settings:??? -> ?vp9Settings:??? -> ?xavcSettings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `List of [> `Enum of string ] list | `Structure of (string * [> `Double of float | `Enum of string | `Integer of int ]) 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