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

AudioStream

import type { AudioStream } from "https://googleapis.deno.dev/v1/transcoder:v1.ts";

Audio stream resource.

interface AudioStream {
bitrateBps?: number;
channelCount?: number;
channelLayout?: string[];
codec?: string;
displayName?: string;
languageCode?: string;
mapping?: AudioMapping[];
sampleRateHertz?: number;
}

§Properties

§
bitrateBps?: number
[src]

Required. Audio bitrate in bits per second. Must be between 1 and 10,000,000.

§
channelCount?: number
[src]

Number of audio channels. Must be between 1 and 6. The default is 2.

§
channelLayout?: string[]
[src]

A list of channel names specifying layout of the audio channels. This only affects the metadata embedded in the container headers, if supported by the specified format. The default is ["fl", "fr"]. Supported channel names: - fl - Front left channel - fr - Front right channel - sl - Side left channel - sr - Side right channel - fc - Front center channel - lfe - Low frequency

§
codec?: string
[src]

The codec for this audio stream. The default is aac. Supported audio codecs: - aac - aac-he - aac-he-v2 - mp3 - ac3 - eac3

§
displayName?: string
[src]

The name for this particular audio stream that will be added to the HLS/DASH manifest. Not supported in MP4 files.

§
languageCode?: string
[src]

The BCP-47 language code, such as en-US or sr-Latn. For more information, see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. Not supported in MP4 files.

§
mapping?: AudioMapping[]
[src]

The mapping for the JobConfig.edit_list atoms with audio EditAtom.inputs.

§
sampleRateHertz?: number
[src]

The audio sample rate in Hertz. The default is 48000 Hertz.