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

Vc3Class

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

Specify the VC3 class to choose the quality characteristics for this output. VC3 class, together with the settings Framerate (framerateNumerator and framerateDenominator) and Resolution (height and width), determine your output bitrate. For example, say that your video resolution is 1920x1080 and your framerate is 29.97. Then Class 145 (CLASS_145) gives you an output with a bitrate of approximately 145 Mbps and Class 220 (CLASS_220) gives you and output with a bitrate of approximately 220 Mbps. VC3 class also specifies the color bit depth of your output.

type Vc3Class =
| "CLASS_145_8BIT"
| "CLASS_220_8BIT"
| "CLASS_220_10BIT"

§Type

§
"CLASS_145_8BIT" | "CLASS_220_8BIT" | "CLASS_220_10BIT" | cmnP.UnexpectedEnumValue
[src]