interface Eac3AtmosSettingsProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.Eac3AtmosSettingsProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#Eac3AtmosSettingsProps |
Java | software.amazon.awscdk.services.medialive.alpha.Eac3AtmosSettingsProps |
Python | aws_cdk.aws_medialive_alpha.Eac3AtmosSettingsProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป Eac3AtmosSettingsProps |
Properties for EAC3 Atmos codec settings.
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';
import * as cdk from 'aws-cdk-lib';
declare const bitrate: cdk.Bitrate;
declare const eac3AtmosCodingMode: medialive_alpha.Eac3AtmosCodingMode;
declare const eac3AtmosDrcLine: medialive_alpha.Eac3AtmosDrcLine;
declare const eac3AtmosDrcRf: medialive_alpha.Eac3AtmosDrcRf;
const eac3AtmosSettingsProps: medialive_alpha.Eac3AtmosSettingsProps = {
bitrate: bitrate,
codingMode: eac3AtmosCodingMode,
dialNorm: 123,
drcLine: eac3AtmosDrcLine,
drcRf: eac3AtmosDrcRf,
heightTrim: 123,
surroundTrim: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| bitrate? | Bitrate | The average bitrate. |
| coding | Eac3 | The coding mode (e.g. CODING_MODE_5_1_4, CODING_MODE_7_1_4, CODING_MODE_9_1_6). |
| dial | number | The dialogue normalization level (1โ31). |
| drc | Eac3 | Sets the Dolby dynamic range compression line mode profile. |
| drc | Eac3 | Sets the Dolby dynamic range compression RF mode profile. |
| height | number | Height channel trim level. |
| surround | number | Surround channel trim level. |
bitrate?
Type:
Bitrate
(optional, default: service default)
The average bitrate.
codingMode?
Type:
Eac3
(optional, default: Eac3AtmosCodingMode.CODING_MODE_5_1_4)
The coding mode (e.g. CODING_MODE_5_1_4, CODING_MODE_7_1_4, CODING_MODE_9_1_6).
dialNorm?
Type:
number
(optional, default: service default)
The dialogue normalization level (1โ31).
drcLine?
Type:
Eac3
(optional, default: service default)
Sets the Dolby dynamic range compression line mode profile.
drcRf?
Type:
Eac3
(optional, default: service default)
Sets the Dolby dynamic range compression RF mode profile.
heightTrim?
Type:
number
(optional, default: service default)
Height channel trim level.
surroundTrim?
Type:
number
(optional, default: service default)
Surround channel trim level.

.NET
Go
Java
Python
TypeScript (