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

DeinterlaceAlgorithm

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

Only applies when you set Deinterlacer (DeinterlaceMode) to Deinterlace (DEINTERLACE) or Adaptive (ADAPTIVE). Motion adaptive interpolate (INTERPOLATE) produces sharper pictures, while blend (BLEND) produces smoother motion. Use (INTERPOLATE_TICKER) OR (BLEND_TICKER) if your source file includes a ticker, such as a scrolling headline at the bottom of the frame.

type DeinterlaceAlgorithm =
| "INTERPOLATE"
| "INTERPOLATE_TICKER"
| "BLEND"
| "BLEND_TICKER"

§Type

§
"INTERPOLATE" | "INTERPOLATE_TICKER" | "BLEND" | "BLEND_TICKER" | cmnP.UnexpectedEnumValue
[src]