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

Mpeg2Telecine

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

When you do frame rate conversion from 23.976 frames per second (fps) to 29.97 fps, and your output scan type is interlaced, you can optionally enable hard or soft telecine to create a smoother picture. Hard telecine (HARD) produces a 29.97i output. Soft telecine (SOFT) produces an output with a 23.976 output that signals to the video player device to do the conversion during play back. When you keep the default value, None (NONE), MediaConvert does a standard frame rate conversion to 29.97 without doing anything with the field polarity to create a smoother picture.

type Mpeg2Telecine =
| "NONE"
| "SOFT"
| "HARD"

§Type

§
"NONE" | "SOFT" | "HARD" | cmnP.UnexpectedEnumValue
[src]