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

XavcAdaptiveQuantization

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

Keep the default value, Auto (AUTO), for this setting to have MediaConvert automatically apply the best types of quantization for your video content. When you want to apply your quantization settings manually, you must set Adaptive quantization (adaptiveQuantization) to a value other than Auto (AUTO). Use this setting to specify the strength of any adaptive quantization filters that you enable. If you don't want MediaConvert to do any adaptive quantization in this transcode, set Adaptive quantization to Off (OFF). Related settings: The value that you choose here applies to the following settings: Flicker adaptive quantization (flickerAdaptiveQuantization), Spatial adaptive quantization (spatialAdaptiveQuantization), and Temporal adaptive quantization (temporalAdaptiveQuantization).

type XavcAdaptiveQuantization =
| "OFF"
| "AUTO"
| "LOW"
| "MEDIUM"
| "HIGH"
| "HIGHER"
| "MAX"

§Type

§
"OFF" | "AUTO" | "LOW" | "MEDIUM" | "HIGH" | "HIGHER" | "MAX" | cmnP.UnexpectedEnumValue
[src]