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

WavSettings

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

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

interface WavSettings {
BitDepth?: number | null;
Channels?: number | null;
Format?: WavFormat | null;
SampleRate?: number | null;
}

§Properties

§
BitDepth?: number | null
[src]

Specify Bit depth (BitDepth), in bits per sample, to choose the encoding quality for this audio track.

§
Channels?: number | null
[src]

Specify the number of channels in this output audio track. Valid values are 1 and even numbers up to 64. For example, 1, 2, 4, 6, and so on, up to 64.

§
Format?: WavFormat | null
[src]

The service defaults to using RIFF for WAV outputs. If your output audio is likely to exceed 4 GB in file size, or if you otherwise need the extended support of the RF64 format, set your output WAV file format to RF64.

§
SampleRate?: number | null
[src]

Sample rate in Hz.