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

InputFilterEnable

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

Specify how the transcoding service applies the denoise and deblock filters. You must also enable the filters separately, with Denoise (InputDenoiseFilter) and Deblock (InputDeblockFilter). * Auto - The transcoding service determines whether to apply filtering, depending on input type and quality. * Disable - The input is not filtered. This is true even if you use the API to enable them in (InputDeblockFilter) and (InputDeblockFilter). * Force - The input is filtered regardless of input type.

type InputFilterEnable =
| "AUTO"
| "DISABLE"
| "FORCE"

§Type

§
"AUTO" | "DISABLE" | "FORCE" | cmnP.UnexpectedEnumValue
[src]