Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

VideoCodecSettings

import type { VideoCodecSettings } from "https://aws-api.deno.dev/v0.4/services/mediaconvert.ts?docs=full";

Video codec settings, (CodecSettings) under (VideoDescription), 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 (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 * H_264, H264Settings * H_265, H265Settings * MPEG2, Mpeg2Settings * PRORES, ProresSettings * VC3, Vc3Settings * VP8, Vp8Settings * VP9, Vp9Settings * XAVC, XavcSettings

interface VideoCodecSettings {
Av1Settings?: Av1Settings | null;
AvcIntraSettings?: AvcIntraSettings | null;
Codec?: VideoCodec | null;
FrameCaptureSettings?: FrameCaptureSettings | null;
H264Settings?: H264Settings | null;
H265Settings?: H265Settings | null;
Mpeg2Settings?: Mpeg2Settings | null;
ProresSettings?: ProresSettings | null;
Vc3Settings?: Vc3Settings | null;
Vp8Settings?: Vp8Settings | null;
Vp9Settings?: Vp9Settings | null;
XavcSettings?: XavcSettings | null;
}

§Properties

§
Av1Settings?: Av1Settings | null
[src]

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

§
AvcIntraSettings?: AvcIntraSettings | null
[src]

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.

§
Codec?: VideoCodec | null
[src]

Specifies the video codec. This must be equal to one of the enum values defined by the object VideoCodec.

§
FrameCaptureSettings?: FrameCaptureSettings | null
[src]

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

§
H264Settings?: H264Settings | null
[src]

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

§
H265Settings?: H265Settings | null
[src]

Settings for H265 codec

§
Mpeg2Settings?: Mpeg2Settings | null
[src]

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

§
ProresSettings?: ProresSettings | null
[src]

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

§
Vc3Settings?: Vc3Settings | null
[src]

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

§
Vp8Settings?: Vp8Settings | null
[src]

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

§
Vp9Settings?: Vp9Settings | null
[src]

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

§
XavcSettings?: XavcSettings | null
[src]

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