interface AudioSelectorSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.AudioSelectorSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_AudioSelectorSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.AudioSelectorSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.AudioSelectorSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnChannelPropsMixin » AudioSelectorSettingsProperty |
Information about the audio to extract from the input.
The parent of this entity is AudioSelector.
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 audioSelectorSettingsProperty: medialive.CfnChannelPropsMixin.AudioSelectorSettingsProperty = {
audioHlsRenditionSelection: {
groupId: 'groupId',
name: 'name',
},
audioLanguageSelection: {
languageCode: 'languageCode',
languageSelectionPolicy: 'languageSelectionPolicy',
},
audioPidSelection: {
pid: 123,
},
audioTrackSelection: {
dolbyEDecode: {
programSelection: 'programSelection',
},
tracks: [{
track: 123,
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| audio | IResolvable | Audio | Selector for HLS audio rendition. |
| audio | IResolvable | Audio | The language code of the audio to select. |
| audio | IResolvable | Audio | The PID of the audio to select. |
| audio | IResolvable | Audio | Information about the audio track to extract. |
audioHlsRenditionSelection?
Type:
IResolvable | Audio
(optional)
Selector for HLS audio rendition.
audioLanguageSelection?
Type:
IResolvable | Audio
(optional)
The language code of the audio to select.
audioPidSelection?
Type:
IResolvable | Audio
(optional)
The PID of the audio to select.
audioTrackSelection?
Type:
IResolvable | Audio
(optional)
Information about the audio track to extract.

.NET
Go
Java
Python
TypeScript