@Stability(value=Stable)
public static interface CfnChannel.AudioDescriptionProperty
extends software.amazon.jsii.JsiiSerializable
The parent of this entity is EncoderSettings.
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.*;
AudioDescriptionProperty audioDescriptionProperty = AudioDescriptionProperty.builder()
.audioNormalizationSettings(AudioNormalizationSettingsProperty.builder()
.algorithm("algorithm")
.algorithmControl("algorithmControl")
.targetLkfs(123)
.build())
.audioSelectorName("audioSelectorName")
.audioType("audioType")
.audioTypeControl("audioTypeControl")
.audioWatermarkingSettings(AudioWatermarkSettingsProperty.builder()
.nielsenWatermarksSettings(NielsenWatermarksSettingsProperty.builder()
.nielsenCbetSettings(NielsenCBETProperty.builder()
.cbetCheckDigitString("cbetCheckDigitString")
.cbetStepaside("cbetStepaside")
.csid("csid")
.build())
.nielsenDistributionType("nielsenDistributionType")
.nielsenNaesIiNwSettings(NielsenNaesIiNwProperty.builder()
.checkDigitString("checkDigitString")
.sid(123)
.build())
.build())
.build())
.codecSettings(AudioCodecSettingsProperty.builder()
.aacSettings(AacSettingsProperty.builder()
.bitrate(123)
.codingMode("codingMode")
.inputType("inputType")
.profile("profile")
.rateControlMode("rateControlMode")
.rawFormat("rawFormat")
.sampleRate(123)
.spec("spec")
.vbrQuality("vbrQuality")
.build())
.ac3Settings(Ac3SettingsProperty.builder()
.bitrate(123)
.bitstreamMode("bitstreamMode")
.codingMode("codingMode")
.dialnorm(123)
.drcProfile("drcProfile")
.lfeFilter("lfeFilter")
.metadataControl("metadataControl")
.build())
.eac3Settings(Eac3SettingsProperty.builder()
.attenuationControl("attenuationControl")
.bitrate(123)
.bitstreamMode("bitstreamMode")
.codingMode("codingMode")
.dcFilter("dcFilter")
.dialnorm(123)
.drcLine("drcLine")
.drcRf("drcRf")
.lfeControl("lfeControl")
.lfeFilter("lfeFilter")
.loRoCenterMixLevel(123)
.loRoSurroundMixLevel(123)
.ltRtCenterMixLevel(123)
.ltRtSurroundMixLevel(123)
.metadataControl("metadataControl")
.passthroughControl("passthroughControl")
.phaseControl("phaseControl")
.stereoDownmix("stereoDownmix")
.surroundExMode("surroundExMode")
.surroundMode("surroundMode")
.build())
.mp2Settings(Mp2SettingsProperty.builder()
.bitrate(123)
.codingMode("codingMode")
.sampleRate(123)
.build())
.passThroughSettings(PassThroughSettingsProperty.builder().build())
.wavSettings(WavSettingsProperty.builder()
.bitDepth(123)
.codingMode("codingMode")
.sampleRate(123)
.build())
.build())
.languageCode("languageCode")
.languageCodeControl("languageCodeControl")
.name("name")
.remixSettings(RemixSettingsProperty.builder()
.channelMappings(List.of(AudioChannelMappingProperty.builder()
.inputChannelLevels(List.of(InputChannelLevelProperty.builder()
.gain(123)
.inputChannel(123)
.build()))
.outputChannel(123)
.build()))
.channelsIn(123)
.channelsOut(123)
.build())
.streamName("streamName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.AudioDescriptionProperty.Builder
A builder for
CfnChannel.AudioDescriptionProperty |
static class |
CfnChannel.AudioDescriptionProperty.Jsii$Proxy
An implementation for
CfnChannel.AudioDescriptionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.AudioDescriptionProperty.Builder |
builder() |
default Object |
getAudioNormalizationSettings()
The advanced audio normalization settings.
|
default String |
getAudioSelectorName()
The name of the AudioSelector that is used as the source for this AudioDescription.
|
default String |
getAudioType()
Applies only if audioTypeControl is useConfigured.
|
default String |
getAudioTypeControl()
Determines how audio type is determined.
|
default Object |
getAudioWatermarkingSettings()
Settings to configure one or more solutions that insert audio watermarks in the audio encode.
|
default Object |
getCodecSettings()
The audio codec settings.
|
default String |
getLanguageCode()
Indicates the language of the audio output track.
|
default String |
getLanguageCodeControl()
Choosing followInput causes the ISO 639 language code of the output to follow the ISO 639 language code of the input.
|
default String |
getName()
The name of this AudioDescription.
|
default Object |
getRemixSettings()
The settings that control how input audio channels are remixed into the output audio channels.
|
default String |
getStreamName()
Used for Microsoft Smooth and Apple HLS outputs.
|
@Stability(value=Stable) @Nullable default Object getAudioNormalizationSettings()
@Stability(value=Stable) @Nullable default String getAudioSelectorName()
@Stability(value=Stable) @Nullable default String getAudioType()
The values for audioType are defined in ISO-IEC 13818-1.
@Stability(value=Stable) @Nullable default String getAudioTypeControl()
followInput: If the input contains an ISO 639 audioType, then that value is passed through to the output. If the input contains no ISO 639 audioType, the value in Audio Type is included in the output. useConfigured: The value in Audio Type is included in the output. Note that this field and audioType are both ignored if inputType is broadcasterMixedAd.
@Stability(value=Stable) @Nullable default Object getAudioWatermarkingSettings()
@Stability(value=Stable) @Nullable default Object getCodecSettings()
@Stability(value=Stable) @Nullable default String getLanguageCode()
Used only if languageControlMode is useConfigured, or there is no ISO 639 language code specified in the input.
@Stability(value=Stable) @Nullable default String getLanguageCodeControl()
The languageCode setting is used when useConfigured is set, or when followInput is selected but there is no ISO 639 language code specified by the input.
@Stability(value=Stable) @Nullable default String getName()
Outputs use this name to uniquely identify this AudioDescription. Description names should be unique within this channel.
@Stability(value=Stable) @Nullable default Object getRemixSettings()
@Stability(value=Stable) @Nullable default String getStreamName()
Indicates the name displayed by the player (for example, English or Director Commentary).
@Stability(value=Stable) static CfnChannel.AudioDescriptionProperty.Builder builder()
Copyright © 2022. All rights reserved.