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

Mp2Settings

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

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

interface Mp2Settings {
Bitrate?: number | null;
Channels?: number | null;
SampleRate?: number | null;
}

§Properties

§
Bitrate?: number | null
[src]

Specify the average bitrate in bits per second.

§
Channels?: number | null
[src]

Set Channels to specify the number of channels in this output audio track. Choosing Mono in the console will give you 1 output channel; choosing Stereo will give you 2. In the API, valid values are 1 and 2.

§
SampleRate?: number | null
[src]

Sample rate in hz.