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

Output

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

Each output in your job is a collection of settings that describes how you want MediaConvert to encode a single output file or stream. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/create-outputs.html.

interface Output {
AudioDescriptions?: AudioDescription[] | null;
CaptionDescriptions?: CaptionDescription[] | null;
ContainerSettings?: ContainerSettings | null;
Extension?: string | null;
NameModifier?: string | null;
OutputSettings?: OutputSettings | null;
Preset?: string | null;
VideoDescription?: VideoDescription | null;
}

§Properties

§
AudioDescriptions?: AudioDescription[] | null
[src]

(AudioDescriptions) contains groups of audio encoding settings organized by audio codec. Include one instance of (AudioDescriptions) per output. (AudioDescriptions) can contain multiple groups of encoding settings.

§
CaptionDescriptions?: CaptionDescription[] | null
[src]

(CaptionDescriptions) contains groups of captions settings. For each output that has captions, include one instance of (CaptionDescriptions). (CaptionDescriptions) can contain multiple groups of captions settings.

§
ContainerSettings?: ContainerSettings | null
[src]

Container specific settings.

§
Extension?: string | null
[src]

Use Extension (Extension) to specify the file extension for outputs in File output groups. If you do not specify a value, the service will use default extensions by container type as follows * MPEG-2 transport stream, m2ts * Quicktime, mov * MXF container, mxf * MPEG-4 container, mp4 * WebM container, webm * No Container, the service will use codec extensions (e.g. AAC, H265, H265, AC3)

§
NameModifier?: string | null
[src]

Use Name modifier (NameModifier) to have the service add a string to the end of each output filename. You specify the base filename as part of your destination URI. When you create multiple outputs in the same output group, Name modifier (NameModifier) is required. Name modifier also accepts format identifiers. For DASH ISO outputs, if you use the format identifiers $Number$ or $Time$ in one output, you must use them in the same way in all outputs of the output group.

§
OutputSettings?: OutputSettings | null
[src]

Specific settings for this type of output.

§
Preset?: string | null
[src]

Use Preset (Preset) to specify a preset for your transcoding settings. Provide the system or custom preset name. You can specify either Preset (Preset) or Container settings (ContainerSettings), but not both.

§
VideoDescription?: VideoDescription | null
[src]

VideoDescription contains a group of video encoding settings. The specific video settings depend on the video codec that you choose for the property codec. Include one instance of VideoDescription per output.