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

Av1FramerateConversionAlgorithm

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

Choose the method that you want MediaConvert to use when increasing or decreasing the frame rate. We recommend using drop duplicate (DUPLICATE_DROP) for numerically simple conversions, such as 60 fps to 30 fps. For numerically complex conversions, you can use interpolate (INTERPOLATE) to avoid stutter. This results in a smooth picture, but might introduce undesirable video artifacts. For complex frame rate conversions, especially if your source video has already been converted from its original cadence, use FrameFormer (FRAMEFORMER) to do motion-compensated interpolation. FrameFormer chooses the best conversion method frame by frame. Note that using FrameFormer increases the transcoding time and incurs a significant add-on cost.

type Av1FramerateConversionAlgorithm =
| "DUPLICATE_DROP"
| "INTERPOLATE"
| "FRAMEFORMER"

§Type

§
"DUPLICATE_DROP" | "INTERPOLATE" | "FRAMEFORMER" | cmnP.UnexpectedEnumValue
[src]