Interface CfnChannel.AudioTrackSelectionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.AudioTrackSelectionProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.AudioTrackSelectionProperty
extends software.amazon.jsii.JsiiSerializable
Information about the audio track to extract.
The parent of this entity is AudioSelectorSettings.
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.*;
AudioTrackSelectionProperty audioTrackSelectionProperty = AudioTrackSelectionProperty.builder()
.dolbyEDecode(AudioDolbyEDecodeProperty.builder()
.programSelection("programSelection")
.build())
.tracks(List.of(AudioTrackProperty.builder()
.premixSettings(AudioPreMixerSettingsProperty.builder()
.audioNormalizationSettings(AudioNormalizationSettingsProperty.builder()
.algorithm("algorithm")
.algorithmControl("algorithmControl")
.peakCalculation("peakCalculation")
.peakLimiterThreshold(123)
.targetLkfs(123)
.build())
.channels(123)
.gainDb(123)
.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())
.build())
.track(123)
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.AudioTrackSelectionPropertystatic final classAn implementation forCfnChannel.AudioTrackSelectionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnChannel.AudioDolbyEDecodePropertydefault ObjectSelects one or more unique audio tracks from within a source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDolbyEDecode
Returns union: eitherIResolvableorCfnChannel.AudioDolbyEDecodeProperty- See Also:
-
getTracks
Selects one or more unique audio tracks from within a source.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnChannel.AudioTrackProperty>- See Also:
-
builder
-