AudioTrackConfig

class aws_cdk.aws_medialive_alpha.AudioTrackConfig(*, track, premix_settings=None)

Bases: object

(experimental) Configuration for a single audio track in a track-based selector.

Parameters:
  • track (Union[int, float]) – (experimental) The 1-based track number to extract.

  • premix_settings (Optional[AudioPreMixerSettings]) – (experimental) Pre-mixer settings for this track (gain, channel remix, loudness normalization). Default: - no pre-mixing

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_medialive_alpha as medialive_alpha

# audio_pre_mixer_settings: medialive_alpha.AudioPreMixerSettings

audio_track_config = medialive_alpha.AudioTrackConfig(
    track=123,

    # the properties below are optional
    premix_settings=audio_pre_mixer_settings
)

Attributes

premix_settings

(experimental) Pre-mixer settings for this track (gain, channel remix, loudness normalization).

Default:
  • no pre-mixing

Stability:

experimental

track

(experimental) The 1-based track number to extract.

Stability:

experimental