@Stability(value=Stable)
public static interface CfnChannel.Ac3SettingsProperty
extends software.amazon.jsii.JsiiSerializable
The parent of this entity is AudioCodecSettings.
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.*;
Ac3SettingsProperty ac3SettingsProperty = Ac3SettingsProperty.builder()
.bitrate(123)
.bitstreamMode("bitstreamMode")
.codingMode("codingMode")
.dialnorm(123)
.drcProfile("drcProfile")
.lfeFilter("lfeFilter")
.metadataControl("metadataControl")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.Ac3SettingsProperty.Builder
A builder for
CfnChannel.Ac3SettingsProperty |
static class |
CfnChannel.Ac3SettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.Ac3SettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.Ac3SettingsProperty.Builder |
builder() |
default Number |
getBitrate()
The average bitrate in bits/second.
|
default String |
getBitstreamMode()
Specifies the bitstream mode (bsmod) for the emitted AC-3 stream.
|
default String |
getCodingMode()
The Dolby Digital coding mode.
|
default Number |
getDialnorm()
Sets the dialnorm for the output.
|
default String |
getDrcProfile()
If set to filmStandard, adds dynamic range compression signaling to the output bitstream as defined in the Dolby Digital specification.
|
default String |
getLfeFilter()
When set to enabled, applies a 120Hz lowpass filter to the LFE channel prior to encoding.
|
default String |
getMetadataControl()
When set to followInput, encoder metadata is sourced from the DD, DD+, or DolbyE decoder that supplies this audio data.
|
@Stability(value=Stable) @Nullable default Number getBitrate()
Valid bitrates depend on the coding mode.
@Stability(value=Stable) @Nullable default String getBitstreamMode()
For more information about these values, see ATSC A/52-2012.
@Stability(value=Stable) @Nullable default String getCodingMode()
This determines the number of channels.
@Stability(value=Stable) @Nullable default Number getDialnorm()
If excluded and the input audio is Dolby Digital, dialnorm is passed through.
@Stability(value=Stable) @Nullable default String getDrcProfile()
@Stability(value=Stable) @Nullable default String getLfeFilter()
This is valid only in codingMode32Lfe mode.
@Stability(value=Stable) @Nullable default String getMetadataControl()
If the audio is supplied from one of these streams, the static metadata settings are used.
@Stability(value=Stable) static CfnChannel.Ac3SettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.