RemixSettings

class aws_cdk.aws_medialive_alpha.RemixSettings(*, channel_mappings, channels_in=None, channels_out=None)

Bases: object

(experimental) Audio remix settings for channel remapping.

Parameters:
  • channel_mappings (Sequence[Union[AudioChannelMapping, Dict[str, Any]]]) – (experimental) The channel mappings from input to output.

  • channels_in (Union[int, float, None]) – (experimental) The number of input channels. Default: - auto-detected

  • channels_out (Union[int, float, None]) – (experimental) The number of output channels. Valid values: 1, 2, 4, 6, 8. Default: - auto-detected

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

remix_settings = medialive_alpha.RemixSettings(
    channel_mappings=[medialive_alpha.AudioChannelMapping(
        input_channel_levels=[medialive_alpha.InputChannelLevel(
            input_channel=123,

            # the properties below are optional
            gain=123
        )],
        output_channel=123
    )],

    # the properties below are optional
    channels_in=123,
    channels_out=123
)

Attributes

channel_mappings

(experimental) The channel mappings from input to output.

Stability:

experimental

channels_in

(experimental) The number of input channels.

Default:
  • auto-detected

Stability:

experimental

channels_out

(experimental) The number of output channels.

Valid values: 1, 2, 4, 6, 8.

Default:
  • auto-detected

Stability:

experimental