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

AudioNormalizationSettings

import type { AudioNormalizationSettings } from "https://aws-api.deno.dev/v0.3/services/medialive.ts?docs=full";

Audio Normalization Settings

interface AudioNormalizationSettings {
Algorithm?: AudioNormalizationAlgorithm | null;
AlgorithmControl?: AudioNormalizationAlgorithmControl | null;
TargetLkfs?: number | null;
}

§Properties

§

Audio normalization algorithm to use. itu17701 conforms to the CALM Act specification, itu17702 conforms to the EBU R-128 specification.

§
AlgorithmControl?: AudioNormalizationAlgorithmControl | null
[src]

When set to correctAudio the output audio is corrected using the chosen algorithm. If set to measureOnly, the audio will be measured but not adjusted.

§
TargetLkfs?: number | null
[src]

Target LKFS(loudness) to adjust volume to. If no value is entered, a default value will be used according to the chosen algorithm. The CALM Act (1770-1) recommends a target of -24 LKFS. The EBU R-128 specification (1770-2) recommends a target of -23 LKFS.