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

OutputSdt

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

Selects method of inserting SDT information into output stream. "Follow input SDT" copies SDT information from input stream to output stream. "Follow input SDT if present" copies SDT information from input stream to output stream if SDT information is present in the input, otherwise it will fall back on the user-defined values. Enter "SDT Manually" means user will enter the SDT information. "No SDT" means output stream will not contain SDT information.

type OutputSdt =
| "SDT_FOLLOW"
| "SDT_FOLLOW_IF_PRESENT"
| "SDT_MANUAL"
| "SDT_NONE"

§Type

§
"SDT_FOLLOW" | "SDT_FOLLOW_IF_PRESENT" | "SDT_MANUAL" | "SDT_NONE" | cmnP.UnexpectedEnumValue
[src]