interface AudioPidConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.AudioPidConfig |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#AudioPidConfig |
Java | software.amazon.awscdk.services.medialive.alpha.AudioPidConfig |
Python | aws_cdk.aws_medialive_alpha.AudioPidConfig |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป AudioPidConfig |
Configuration for a single audio PID in a PID-based selector.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
declare const audioPreMixerSettings: medialive_alpha.AudioPreMixerSettings;
declare const dolbyEProgramSelection: medialive_alpha.DolbyEProgramSelection;
const audioPidConfig: medialive_alpha.AudioPidConfig = {
pid: 123,
// the properties below are optional
dolbyEDecode: dolbyEProgramSelection,
premixSettings: audioPreMixerSettings,
};
Properties
| Name | Type | Description |
|---|---|---|
| pid | number | The packet identifier (PID) value from within the source. |
| dolby | Dolby | Which Dolby E program to decode from this PID. |
| premix | Audio | Pre-mixer settings for this PID (gain, channel remix, loudness normalization). |
pid
Type:
number
The packet identifier (PID) value from within the source.
dolbyEDecode?
Type:
Dolby
(optional, default: no Dolby E decoding)
Which Dolby E program to decode from this PID.
premixSettings?
Type:
Audio
(optional, default: no pre-mixing)
Pre-mixer settings for this PID (gain, channel remix, loudness normalization).

.NET
Go
Java
Python
TypeScript (