Interface CfnChannel.AudioSelectorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.AudioSelectorProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.AudioSelectorProperty extends software.amazon.jsii.JsiiSerializable
Information about one audio to extract from the input.

The parent of this entity is InputSettings.

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.*;
 AudioSelectorProperty audioSelectorProperty = AudioSelectorProperty.builder()
         .name("name")
         .selectorSettings(AudioSelectorSettingsProperty.builder()
                 .audioHlsRenditionSelection(AudioHlsRenditionSelectionProperty.builder()
                         .groupId("groupId")
                         .name("name")
                         .build())
                 .audioLanguageSelection(AudioLanguageSelectionProperty.builder()
                         .languageCode("languageCode")
                         .languageSelectionPolicy("languageSelectionPolicy")
                         .build())
                 .audioPidSelection(AudioPidSelectionProperty.builder()
                         .pid(123)
                         .pids(List.of(AudioPidProperty.builder()
                                 .dolbyEDecode(AudioDolbyEDecodeProperty.builder()
                                         .programSelection("programSelection")
                                         .build())
                                 .pid(123)
                                 .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())
                                 .build()))
                         .build())
                 .audioTrackSelection(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())
                 .build())
         .build();
 

See Also: