Interface Eac3AtmosSettingsProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Eac3AtmosSettingsProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.031Z")
@Stability(Experimental)
public interface Eac3AtmosSettingsProps
extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.services.medialive.alpha.*;
import software.amazon.awscdk.*;
Bitrate bitrate;
Eac3AtmosCodingMode eac3AtmosCodingMode;
Eac3AtmosDrcLine eac3AtmosDrcLine;
Eac3AtmosDrcRf eac3AtmosDrcRf;
Eac3AtmosSettingsProps eac3AtmosSettingsProps = Eac3AtmosSettingsProps.builder()
.bitrate(bitrate)
.codingMode(eac3AtmosCodingMode)
.dialNorm(123)
.drcLine(eac3AtmosDrcLine)
.drcRf(eac3AtmosDrcRf)
.heightTrim(123)
.surroundTrim(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEac3AtmosSettingsPropsstatic final classAn implementation forEac3AtmosSettingsProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Bitrate(experimental) The average bitrate.default Eac3AtmosCodingMode(experimental) The coding mode (e.g.default Number(experimental) The dialogue normalization level (1–31).default Eac3AtmosDrcLine(experimental) Sets the Dolby dynamic range compression line mode profile.default Eac3AtmosDrcRfgetDrcRf()(experimental) Sets the Dolby dynamic range compression RF mode profile.default Number(experimental) Height channel trim level.default Number(experimental) Surround channel trim level.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBitrate
(experimental) The average bitrate.Default: - service default
-
getCodingMode
(experimental) The coding mode (e.g. CODING_MODE_5_1_4, CODING_MODE_7_1_4, CODING_MODE_9_1_6).Default: Eac3AtmosCodingMode.CODING_MODE_5_1_4
-
getDialNorm
(experimental) The dialogue normalization level (1–31).Default: - service default
-
getDrcLine
(experimental) Sets the Dolby dynamic range compression line mode profile.Default: - service default
-
getDrcRf
(experimental) Sets the Dolby dynamic range compression RF mode profile.Default: - service default
-
getHeightTrim
(experimental) Height channel trim level.Default: - service default
-
getSurroundTrim
(experimental) Surround channel trim level.Default: - service default
-
builder
- Returns:
- a
Eac3AtmosSettingsProps.BuilderofEac3AtmosSettingsProps
-