interface AudioSelectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.AudioSelectorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_AudioSelectorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.AudioSelectorProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.AudioSelectorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnChannelPropsMixin » AudioSelectorProperty |
Information about one audio to extract from the input.
The parent of this entity is InputSettings.
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/cfn-property-mixins';
const audioSelectorProperty: medialive.CfnChannelPropsMixin.AudioSelectorProperty = {
name: 'name',
selectorSettings: {
audioHlsRenditionSelection: {
groupId: 'groupId',
name: 'name',
},
audioLanguageSelection: {
languageCode: 'languageCode',
languageSelectionPolicy: 'languageSelectionPolicy',
},
audioPidSelection: {
pid: 123,
pids: [{
dolbyEDecode: {
programSelection: 'programSelection',
},
pid: 123,
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,
},
},
}],
},
audioTrackSelection: {
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 |
|---|---|---|
| name? | string | A name for this AudioSelector. |
| selector | IResolvable | Audio | Information about the specific audio to extract from the input. |
name?
Type:
string
(optional)
A name for this AudioSelector.
selectorSettings?
Type:
IResolvable | Audio
(optional)
Information about the specific audio to extract from the input.

.NET
Go
Java
Python
TypeScript