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

AacCodingMode

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

The Coding mode that you specify determines the number of audio channels and the audio channel layout metadata in your AAC output. Valid coding modes depend on the Rate control mode and Profile that you select. The following list shows the number of audio channels and channel layout for each coding mode. * 1.0 Audio Description (Receiver Mix): One channel, C. Includes audio description data from your stereo input. For more information see ETSI TS 101 154 Annex E. * 1.0 Mono: One channel, C. * 2.0 Stereo: Two channels, L, R. * 5.1 Surround: Five channels, C, L, R, Ls, Rs, LFE.

type AacCodingMode =
| "AD_RECEIVER_MIX"
| "CODING_MODE_1_0"
| "CODING_MODE_1_1"
| "CODING_MODE_2_0"
| "CODING_MODE_5_1"

§Type

§
"AD_RECEIVER_MIX" | "CODING_MODE_1_0" | "CODING_MODE_1_1" | "CODING_MODE_2_0" | "CODING_MODE_5_1" | cmnP.UnexpectedEnumValue
[src]