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

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 RemixSettings data as a 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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#channel_mappingsArray<Types::AudioChannelMapping>

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

Returns:



15050
15051
15052
15053
15054
15055
15056
# File 'lib/aws-sdk-medialive/types.rb', line 15050

class RemixSettings < Struct.new(
  :channel_mappings,
  :channels_in,
  :channels_out)
  SENSITIVE = []
  include Aws::Structure
end

#channels_inInteger

Number of input channels to be used.

Returns:

  • (Integer)


15050
15051
15052
15053
15054
15055
15056
# File 'lib/aws-sdk-medialive/types.rb', line 15050

class RemixSettings < Struct.new(
  :channel_mappings,
  :channels_in,
  :channels_out)
  SENSITIVE = []
  include Aws::Structure
end

#channels_outInteger

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

Returns:

  • (Integer)


15050
15051
15052
15053
15054
15055
15056
# File 'lib/aws-sdk-medialive/types.rb', line 15050

class RemixSettings < Struct.new(
  :channel_mappings,
  :channels_in,
  :channels_out)
  SENSITIVE = []
  include Aws::Structure
end