interface AudioPidSelectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.AudioPidSelectionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_AudioPidSelectionProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.AudioPidSelectionProperty |
Python | aws_cdk.aws_medialive.CfnChannel.AudioPidSelectionProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnChannel » AudioPidSelectionProperty |
Used to extract audio by The PID.
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 audioPidSelectionProperty: medialive.CfnChannel.AudioPidSelectionProperty = {
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,
},
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pid? | number | Select the audio by this PID. |
| pids? | IResolvable | (IResolvable | Audio)[] |
pid?
Type:
number
(optional)
Select the audio by this PID.
pids?
Type:
IResolvable | (IResolvable | Audio)[]
(optional)

.NET
Go
Java
Python
TypeScript