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

InputTimecodeSource

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

Use this Timecode source setting, located under the input settings (InputTimecodeSource), to specify how the service counts input video frames. This input frame count affects only the behavior of features that apply to a single input at a time, such as input clipping and synchronizing some captions formats. Choose Embedded (EMBEDDED) to use the timecodes in your input video. Choose Start at zero (ZEROBASED) to start the first frame at zero. Choose Specified start (SPECIFIEDSTART) to start the first frame at the timecode that you specify in the setting Start timecode (timecodeStart). If you don't specify a value for Timecode source, the service will use Embedded by default. For more information about timecodes, see https://docs.aws.amazon.com/console/mediaconvert/timecode.

type InputTimecodeSource =
| "EMBEDDED"
| "ZEROBASED"
| "SPECIFIEDSTART"

§Type

§
"EMBEDDED" | "ZEROBASED" | "SPECIFIEDSTART" | cmnP.UnexpectedEnumValue
[src]