public static interface CfnChannel.AudioNormalizationSettingsProperty
The parent of this entity is AudioDescription.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.medialive.*; AudioNormalizationSettingsProperty audioNormalizationSettingsProperty = AudioNormalizationSettingsProperty.builder() .algorithm("algorithm") .algorithmControl("algorithmControl") .targetLkfs(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnChannel.AudioNormalizationSettingsProperty.Builder
A builder for
CfnChannel.AudioNormalizationSettingsProperty |
static class |
CfnChannel.AudioNormalizationSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.AudioNormalizationSettingsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnChannel.AudioNormalizationSettingsProperty.Builder |
builder() |
default java.lang.String |
getAlgorithm()
The audio normalization algorithm to use.
|
default java.lang.String |
getAlgorithmControl()
When set to correctAudio, the output audio is corrected using the chosen algorithm.
|
default java.lang.Number |
getTargetLkfs()
The Target LKFS(loudness) to adjust volume to.
|
default java.lang.String getAlgorithm()
itu17701 conforms to the CALM Act specification. itu17702 conforms to the EBU R-128 specification.
default java.lang.String getAlgorithmControl()
If set to measureOnly, the audio is measured but not adjusted.
default java.lang.Number getTargetLkfs()
If no value is entered, a default value is 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.
static CfnChannel.AudioNormalizationSettingsProperty.Builder builder()