Interface AudioPidConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AudioPidConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:40.914Z") @Stability(Experimental) public interface AudioPidConfig extends software.amazon.jsii.JsiiSerializable
(experimental) Configuration for a single audio PID in a PID-based selector.

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.*;
 AudioPreMixerSettings audioPreMixerSettings;
 DolbyEProgramSelection dolbyEProgramSelection;
 AudioPidConfig audioPidConfig = AudioPidConfig.builder()
         .pid(123)
         // the properties below are optional
         .dolbyEDecode(dolbyEProgramSelection)
         .premixSettings(audioPreMixerSettings)
         .build();
 
  • Method Details

    • getPid

      @Stability(Experimental) @NotNull Number getPid()
      (experimental) The packet identifier (PID) value from within the source.
    • getDolbyEDecode

      @Stability(Experimental) @Nullable default DolbyEProgramSelection getDolbyEDecode()
      (experimental) Which Dolby E program to decode from this PID.

      Default: - no Dolby E decoding

    • getPremixSettings

      @Stability(Experimental) @Nullable default AudioPreMixerSettings getPremixSettings()
      (experimental) Pre-mixer settings for this PID (gain, channel remix, loudness normalization).

      Default: - no pre-mixing

    • builder

      @Stability(Experimental) static AudioPidConfig.Builder builder()
      Returns:
      a AudioPidConfig.Builder of AudioPidConfig