interface Ac3SettingsProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.Ac3SettingsProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#Ac3SettingsProps |
Java | software.amazon.awscdk.services.medialive.alpha.Ac3SettingsProps |
Python | aws_cdk.aws_medialive_alpha.Ac3SettingsProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป Ac3SettingsProps |
Properties for AC3 codec settings.
Example
// AAC stereo
const aac = medialive.EncodeConfiguration.audio({
name: 'aac_stereo',
codec: medialive.AudioCodecSettings.aac({
bitrate: Bitrate.kbps(192),
codingMode: medialive.AacCodingMode.CODING_MODE_2_0,
}),
});
// AC3 5.1
const ac3 = medialive.EncodeConfiguration.audio({
name: 'ac3_surround',
codec: medialive.AudioCodecSettings.ac3({
bitrate: Bitrate.kbps(384),
codingMode: medialive.Ac3CodingMode.CODING_MODE_3_2_LFE,
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| attenuation | Ac3 | Applies a 3 dB attenuation to the surround channels. |
| bitrate? | Bitrate | The average bitrate. |
| bitstream | Ac3 | Specifies the bitstream mode (bsmod) for the emitted AC-3 stream. |
| coding | Ac3 | The Dolby Digital coding mode. |
| dial | number | The dialogue normalization level (1โ31). |
| drc | Ac3 | If set to filmStandard, adds dynamic range compression signaling to the output bitstream. |
| lfe | Ac3 | When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding. |
| metadata | Ac3 | When set to followInput, encoder metadata is sourced from the DD, DD+, or DolbyE decoder that supplies this audio data. |
attenuationControl?
Type:
Ac3
(optional, default: service default)
Applies a 3 dB attenuation to the surround channels.
Used only for the 3/2 coding mode.
bitrate?
Type:
Bitrate
(optional, default: service default)
The average bitrate.
bitstreamMode?
Type:
Ac3
(optional, default: Ac3BitstreamMode.COMPLETE_MAIN)
Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
codingMode?
Type:
Ac3
(optional, default: Ac3CodingMode.CODING_MODE_2_0)
The Dolby Digital coding mode.
dialNorm?
Type:
number
(optional, default: service default)
The dialogue normalization level (1โ31).
drcProfile?
Type:
Ac3
(optional, default: service default)
If set to filmStandard, adds dynamic range compression signaling to the output bitstream.
lfeFilter?
Type:
Ac3
(optional, default: Ac3LfeFilter.DISABLED)
When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
Valid only in codingMode32Lfe mode.
metadataControl?
Type:
Ac3
(optional, default: service default)
When set to followInput, encoder metadata is sourced from the DD, DD+, or DolbyE decoder that supplies this audio data.

.NET
Go
Java
Python
TypeScript (