interface AudioTrackConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.AudioTrackConfig |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#AudioTrackConfig |
Java | software.amazon.awscdk.services.medialive.alpha.AudioTrackConfig |
Python | aws_cdk.aws_medialive_alpha.AudioTrackConfig |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป AudioTrackConfig |
Configuration for a single audio track in a track-based selector.
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 audioPreMixerSettings: medialive_alpha.AudioPreMixerSettings;
const audioTrackConfig: medialive_alpha.AudioTrackConfig = {
track: 123,
// the properties below are optional
premixSettings: audioPreMixerSettings,
};
Properties
| Name | Type | Description |
|---|---|---|
| track | number | The 1-based track number to extract. |
| premix | Audio | Pre-mixer settings for this track (gain, channel remix, loudness normalization). |
track
Type:
number
The 1-based track number to extract.
premixSettings?
Type:
Audio
(optional, default: no pre-mixing)
Pre-mixer settings for this track (gain, channel remix, loudness normalization).

.NET
Go
Java
Python
TypeScript (