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

AudioCodecSettings

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

Settings related to audio encoding. The settings in this group vary depending on the value that you choose for your audio codec.

interface AudioCodecSettings {
AacSettings?: AacSettings | null;
Ac3Settings?: Ac3Settings | null;
AiffSettings?: AiffSettings | null;
Codec?: AudioCodec | null;
Eac3AtmosSettings?: Eac3AtmosSettings | null;
Eac3Settings?: Eac3Settings | null;
Mp2Settings?: Mp2Settings | null;
Mp3Settings?: Mp3Settings | null;
OpusSettings?: OpusSettings | null;
VorbisSettings?: VorbisSettings | null;
WavSettings?: WavSettings | null;
}

§Properties

§
AacSettings?: AacSettings | null
[src]

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value AAC. The service accepts one of two mutually exclusive groups of AAC settings--VBR and CBR. To select one of these modes, set the value of Bitrate control mode (rateControlMode) to "VBR" or "CBR". In VBR mode, you control the audio quality with the setting VBR quality (vbrQuality). In CBR mode, you use the setting Bitrate (bitrate). Defaults and valid values depend on the rate control mode.

§
Ac3Settings?: Ac3Settings | null
[src]

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value AC3.

§
AiffSettings?: AiffSettings | null
[src]

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value AIFF.

§
Codec?: AudioCodec | null
[src]

Choose the audio codec for this output. Note that the option Dolby Digital passthrough (PASSTHROUGH) applies only to Dolby Digital and Dolby Digital Plus audio inputs. Make sure that you choose a codec that's supported with your output container: https://docs.aws.amazon.com/mediaconvert/latest/ug/reference-codecs-containers.html#reference-codecs-containers-output-audio For audio-only outputs, make sure that both your input audio codec and your output audio codec are supported for audio-only workflows. For more information, see: https://docs.aws.amazon.com/mediaconvert/latest/ug/reference-codecs-containers-input.html#reference-codecs-containers-input-audio-only and https://docs.aws.amazon.com/mediaconvert/latest/ug/reference-codecs-containers.html#audio-only-output

§
Eac3AtmosSettings?: Eac3AtmosSettings | null
[src]

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value EAC3_ATMOS.

§
Eac3Settings?: Eac3Settings | null
[src]

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value EAC3.

§
Mp2Settings?: Mp2Settings | null
[src]

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value MP2.

§
Mp3Settings?: Mp3Settings | null
[src]

Required when you set Codec, under AudioDescriptions>CodecSettings, to the value MP3.

§
OpusSettings?: OpusSettings | null
[src]

Required when you set Codec, under AudioDescriptions>CodecSettings, to the value OPUS.

§
VorbisSettings?: VorbisSettings | null
[src]

Required when you set Codec, under AudioDescriptions>CodecSettings, to the value Vorbis.

§
WavSettings?: WavSettings | null
[src]

Required when you set (Codec) under (AudioDescriptions)>(CodecSettings) to the value WAV.