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

H264AdaptiveQuantization

import type { H264AdaptiveQuantization } 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 H264AdaptiveQuantization 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 (H264AdaptiveQuantization) to Off (OFF). Related settings: The value that you choose here applies to the following settings: H264FlickerAdaptiveQuantization, H264SpatialAdaptiveQuantization, and H264TemporalAdaptiveQuantization.

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

§Type

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