interface AudioTrackSelectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.AudioTrackSelectionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_AudioTrackSelectionProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.AudioTrackSelectionProperty |
Python | aws_cdk.aws_medialive.CfnChannel.AudioTrackSelectionProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnChannel » AudioTrackSelectionProperty |
Information about the audio track to extract.
The parent of this entity is AudioSelectorSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const audioTrackSelectionProperty: medialive.CfnChannel.AudioTrackSelectionProperty = {
dolbyEDecode: {
programSelection: 'programSelection',
},
tracks: [{
premixSettings: {
audioNormalizationSettings: {
algorithm: 'algorithm',
algorithmControl: 'algorithmControl',
peakCalculation: 'peakCalculation',
peakLimiterThreshold: 123,
targetLkfs: 123,
},
channels: 123,
gainDb: 123,
remixSettings: {
channelMappings: [{
inputChannelLevels: [{
gain: 123,
inputChannel: 123,
}],
outputChannel: 123,
}],
channelsIn: 123,
channelsOut: 123,
},
},
track: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dolby | IResolvable | Audio | |
| tracks? | IResolvable | (IResolvable | Audio)[] | Selects one or more unique audio tracks from within a source. |
dolbyEDecode?
Type:
IResolvable | Audio
(optional)
tracks?
Type:
IResolvable | (IResolvable | Audio)[]
(optional)
Selects one or more unique audio tracks from within a source.

.NET
Go
Java
Python
TypeScript