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

AudioCodec

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

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

type AudioCodec =
| "AAC"
| "MP2"
| "MP3"
| "WAV"
| "AIFF"
| "AC3"
| "EAC3"
| "EAC3_ATMOS"
| "VORBIS"
| "OPUS"
| "PASSTHROUGH"

§Type

§
"AAC" | "MP2" | "MP3" | "WAV" | "AIFF" | "AC3" | "EAC3" | "EAC3_ATMOS" | "VORBIS" | "OPUS" | "PASSTHROUGH" | cmnP.UnexpectedEnumValue
[src]