interface AudioNormalizationSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.AudioNormalizationSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#AudioNormalizationSettings |
Java | software.amazon.awscdk.services.medialive.alpha.AudioNormalizationSettings |
Python | aws_cdk.aws_medialive_alpha.AudioNormalizationSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป AudioNormalizationSettings |
Audio normalization settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
declare const audioNormalizationAlgorithm: medialive_alpha.AudioNormalizationAlgorithm;
declare const audioNormalizationAlgorithmControl: medialive_alpha.AudioNormalizationAlgorithmControl;
declare const audioNormalizationPeakCalculation: medialive_alpha.AudioNormalizationPeakCalculation;
const audioNormalizationSettings: medialive_alpha.AudioNormalizationSettings = {
algorithm: audioNormalizationAlgorithm,
algorithmControl: audioNormalizationAlgorithmControl,
peakCalculation: audioNormalizationPeakCalculation,
peakLimiterThreshold: 123,
targetLkfs: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| algorithm? | Audio | The normalization algorithm. |
| algorithm | Audio | Whether to correct or only measure. |
| peak | Audio | Whether to use a peak limiter and how to calculate peak levels. |
| peak | number | The peak limiter threshold in dBFS. |
| target | number | The target loudness in LKFS. |
algorithm?
Type:
Audio
(optional, default: service default)
The normalization algorithm.
algorithmControl?
Type:
Audio
(optional, default: service default)
Whether to correct or only measure.
peakCalculation?
Type:
Audio
(optional, default: service default)
Whether to use a peak limiter and how to calculate peak levels.
peakLimiterThreshold?
Type:
number
(optional, default: service default)
The peak limiter threshold in dBFS.
Only used when peak limiting is enabled.
targetLkfs?
Type:
number
(optional, default: service default)
The target loudness in LKFS.
CALM Act recommends -24, EBU R-128 recommends -23.

.NET
Go
Java
Python
TypeScript (