interface AudioTrackProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.AudioTrackProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_AudioTrackProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.AudioTrackProperty |
Python | aws_cdk.aws_medialive.CfnChannel.AudioTrackProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnChannel » AudioTrackProperty |
Information about one audio track to extract. You can select multiple tracks.
The parent of this entity is AudioTrackSelection.
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 audioTrackProperty: medialive.CfnChannel.AudioTrackProperty = {
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 |
|---|---|---|
| premix | IResolvable | Audio | |
| track? | number | 1-based integer value that maps to a specific audio track. |
premixSettings?
Type:
IResolvable | Audio
(optional)
track?
Type:
number
(optional)
1-based integer value that maps to a specific audio track.

.NET
Go
Java
Python
TypeScript