Class AudioPreMixerSettings

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.medialive.alpha.AudioPreMixerSettings
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:40.915Z") @Stability(Experimental) public class AudioPreMixerSettings extends software.amazon.jsii.JsiiObject
(experimental) Audio pre-mixer settings for normalizing audio before interleaving.

Applied per-PID or per-track before tracks are combined.

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.*;
 AudioNormalizationAlgorithm audioNormalizationAlgorithm;
 AudioNormalizationAlgorithmControl audioNormalizationAlgorithmControl;
 AudioNormalizationPeakCalculation audioNormalizationPeakCalculation;
 AudioPreMixerSettings audioPreMixerSettings = AudioPreMixerSettings.of(AudioPreMixerSettingsProps.builder()
         .audioNormalizationSettings(AudioNormalizationSettings.builder()
                 .algorithm(audioNormalizationAlgorithm)
                 .algorithmControl(audioNormalizationAlgorithmControl)
                 .peakCalculation(audioNormalizationPeakCalculation)
                 .peakLimiterThreshold(123)
                 .targetLkfs(123)
                 .build())
         .channels(123)
         .gainDb(123)
         .remixSettings(RemixSettings.builder()
                 .channelMappings(List.of(AudioChannelMapping.builder()
                         .inputChannelLevels(List.of(InputChannelLevel.builder()
                                 .inputChannel(123)
                                 // the properties below are optional
                                 .gain(123)
                                 .build()))
                         .outputChannel(123)
                         .build()))
                 // the properties below are optional
                 .channelsIn(123)
                 .channelsOut(123)
                 .build())
         .build());
 
  • Nested Class Summary

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    AudioPreMixerSettings(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    AudioPreMixerSettings(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    (experimental) Create pre-mixer settings.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • AudioPreMixerSettings

      protected AudioPreMixerSettings(software.amazon.jsii.JsiiObjectRef objRef)
    • AudioPreMixerSettings

      protected AudioPreMixerSettings(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
  • Method Details