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

H265AdaptiveQuantization

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

When you set Adaptive Quantization (H265AdaptiveQuantization) to Auto (AUTO), or leave blank, MediaConvert automatically applies quantization to improve the video quality of your output. Set Adaptive Quantization to Low (LOW), Medium (MEDIUM), High (HIGH), Higher (HIGHER), or Max (MAX) to manually control the strength of the quantization filter. When you do, you can specify a value for Spatial Adaptive Quantization (H265SpatialAdaptiveQuantization), Temporal Adaptive Quantization (H265TemporalAdaptiveQuantization), and Flicker Adaptive Quantization (H265FlickerAdaptiveQuantization), to further control the quantization filter. Set Adaptive Quantization to Off (OFF) to apply no quantization to your output.

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

§Type

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