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

AudioMapping

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

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

interface AudioMapping {
atomKey?: string;
gainDb?: number;
inputChannel?: number;
inputKey?: string;
inputTrack?: number;
outputChannel?: number;
}

§Properties

§
atomKey?: string
[src]

Required. The EditAtom.key that references the atom with audio inputs in the JobConfig.edit_list.

§
gainDb?: number
[src]

Audio volume control in dB. Negative values decrease volume, positive values increase. The default is 0.

§
inputChannel?: number
[src]

Required. The zero-based index of the channel in the input audio stream.

§
inputKey?: string
[src]

Required. The Input.key that identifies the input file.

§
inputTrack?: number
[src]

Required. The zero-based index of the track in the input file.

§
outputChannel?: number
[src]

Required. The zero-based index of the channel in the output audio stream.