interface AudioPreMixerSettingsProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.AudioPreMixerSettingsProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#AudioPreMixerSettingsProps |
Java | software.amazon.awscdk.services.medialive.alpha.AudioPreMixerSettingsProps |
Python | aws_cdk.aws_medialive_alpha.AudioPreMixerSettingsProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป AudioPreMixerSettingsProps |
Properties for audio pre-mixer 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 audioPreMixerSettingsProps: medialive_alpha.AudioPreMixerSettingsProps = {
audioNormalizationSettings: {
algorithm: audioNormalizationAlgorithm,
algorithmControl: audioNormalizationAlgorithmControl,
peakCalculation: audioNormalizationPeakCalculation,
peakLimiterThreshold: 123,
targetLkfs: 123,
},
channels: 123,
gainDb: 123,
remixSettings: {
channelMappings: [{
inputChannelLevels: [{
inputChannel: 123,
// the properties below are optional
gain: 123,
}],
outputChannel: 123,
}],
// the properties below are optional
channelsIn: 123,
channelsOut: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| audio | Audio | Audio normalization settings for loudness control. |
| channels? | number | The number of audio channels to remix to. |
| gain | number | The gain adjustment in decibels (dB). |
| remix | Remix | Remix settings for fine-grained channel mapping and gain levels. |
audioNormalizationSettings?
Type:
Audio
(optional, default: no normalization)
Audio normalization settings for loudness control.
channels?
Type:
number
(optional, default: pass through original channel count)
The number of audio channels to remix to.
Overridden by remixSettings if specified.
gainDb?
Type:
number
(optional, default: no gain adjustment)
The gain adjustment in decibels (dB).
remixSettings?
Type:
Remix
(optional, default: no remixing)
Remix settings for fine-grained channel mapping and gain levels.

.NET
Go
Java
Python
TypeScript (