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

Mp3Settings

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

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

interface Mp3Settings {
Bitrate?: number | null;
Channels?: number | null;
RateControlMode?: Mp3RateControlMode | null;
SampleRate?: number | null;
VbrQuality?: number | null;
}

§Properties

§
Bitrate?: number | null
[src]

Specify the average bitrate in bits per second.

§
Channels?: number | null
[src]

Specify the number of channels in this output audio track. Choosing Mono on the console gives you 1 output channel; choosing Stereo gives you 2. In the API, valid values are 1 and 2.

§
RateControlMode?: Mp3RateControlMode | null
[src]

Specify whether the service encodes this MP3 audio output with a constant bitrate (CBR) or a variable bitrate (VBR).

§
SampleRate?: number | null
[src]

Sample rate in hz.

§
VbrQuality?: number | null
[src]

Required when you set Bitrate control mode (rateControlMode) to VBR. Specify the audio quality of this MP3 output from 0 (highest quality) to 9 (lowest quality).