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

YadifConfig

import type { YadifConfig } from "https://googleapis.deno.dev/v1/transcoder:v1.ts";

Yet Another Deinterlacing Filter Configuration.

interface YadifConfig {
deinterlaceAllFrames?: boolean;
disableSpatialInterlacing?: boolean;
mode?: string;
parity?: string;
}

§Properties

§
deinterlaceAllFrames?: boolean
[src]

Deinterlace all frames rather than just the frames identified as interlaced. The default is false.

§
disableSpatialInterlacing?: boolean
[src]

Disable spacial interlacing. The default is false.

§
mode?: string
[src]

Specifies the deinterlacing mode to adopt. The default is send_frame. Supported values: - send_frame: Output one frame for each frame - send_field: Output one frame for each field

§
parity?: string
[src]

The picture field parity assumed for the input interlaced video. The default is auto. Supported values: - tff: Assume the top field is first

  • bff: Assume the bottom field is first - auto: Enable automatic detection of field parity