You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MediaLive::Types::RemixSettings

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing RemixSettings as input to an Aws::Client method, you can use a vanilla Hash:

{
  channel_mappings: [ # required
    {
      input_channel_levels: [ # required
        {
          gain: 1, # required
          input_channel: 1, # required
        },
      ],
      output_channel: 1, # required
    },
  ],
  channels_in: 1,
  channels_out: 1,
}

Remix Settings

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#channel_mappingsArray<Types::AudioChannelMapping>

Mapping of input channels to output channels, with appropriate gain adjustments.

Returns:

#channels_inInteger

Number of input channels to be used.

Returns:

  • (Integer)

    Number of input channels to be used.

#channels_outInteger

Number of output channels to be produced. Valid values: 1, 2, 4, 6, 8

Returns:

  • (Integer)

    Number of output channels to be produced.