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

Preset

import type { Preset } from "https://aws-api.deno.dev/v0.3/services/elastictranscoder.ts?docs=full";

Presets are templates that contain most of the settings for transcoding media files from one format to another. Elastic Transcoder includes some default presets for common formats, for example, several iPod and iPhone versions. You can also create your own presets for formats that aren't included among the default presets. You specify which preset you want to use when you create a job.

interface Preset {
Arn?: string | null;
Audio?: AudioParameters | null;
Container?: string | null;
Description?: string | null;
Id?: string | null;
Name?: string | null;
Thumbnails?: Thumbnails | null;
Type?: string | null;
Video?: VideoParameters | null;
}

§Properties

§
Arn?: string | null
[src]

The Amazon Resource Name (ARN) for the preset.

§
Audio?: AudioParameters | null
[src]

A section of the response body that provides information about the audio preset values.

§
Container?: string | null
[src]

The container type for the output file. Valid values include flac, flv, fmp4, gif, mp3, mp4, mpg, mxf, oga, ogg, ts, and webm.

§
Description?: string | null
[src]

A description of the preset.

§
Id?: string | null
[src]

Identifier for the new preset. You use this value to get settings for the preset or to delete it.

§
Name?: string | null
[src]

The name of the preset.

§
Thumbnails?: Thumbnails | null
[src]

A section of the response body that provides information about the thumbnail preset values, if any.

§
Type?: string | null
[src]

Whether the preset is a default preset provided by Elastic Transcoder (System) or a preset that you have defined (Custom).

§
Video?: VideoParameters | null
[src]

A section of the response body that provides information about the video preset values.