Class: Aws::MediaLive::Types::AudioChannelMapping

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-medialive/types.rb

Overview

Note:

When making an API call, you may pass AudioChannelMapping data as a hash:

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

Audio Channel Mapping

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#input_channel_levelsArray<Types::InputChannelLevel>

Indices and gain values for each input channel that should be remixed into this output channel.

Returns:



533
534
535
536
537
538
# File 'lib/aws-sdk-medialive/types.rb', line 533

class AudioChannelMapping < Struct.new(
  :input_channel_levels,
  :output_channel)
  SENSITIVE = []
  include Aws::Structure
end

#output_channelInteger

The index of the output channel being produced.

Returns:

  • (Integer)


533
534
535
536
537
538
# File 'lib/aws-sdk-medialive/types.rb', line 533

class AudioChannelMapping < Struct.new(
  :input_channel_levels,
  :output_channel)
  SENSITIVE = []
  include Aws::Structure
end