Class: Aws::MediaConvert::Types::Mp2Settings

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

Overview

Required when you set Codec to the value MP2.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bitrateInteger

Specify the average bitrate in bits per second.

Returns:

  • (Integer)


9425
9426
9427
9428
9429
9430
9431
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9425

class Mp2Settings < Struct.new(
  :bitrate,
  :channels,
  :sample_rate)
  SENSITIVE = []
  include Aws::Structure
end

#channelsInteger

Set Channels to specify the number of channels in this output audio track. Choosing Mono in will give you 1 output channel; choosing Stereo will give you 2. In the API, valid values are 1 and 2.

Returns:

  • (Integer)


9425
9426
9427
9428
9429
9430
9431
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9425

class Mp2Settings < Struct.new(
  :bitrate,
  :channels,
  :sample_rate)
  SENSITIVE = []
  include Aws::Structure
end

#sample_rateInteger

Sample rate in Hz.

Returns:

  • (Integer)


9425
9426
9427
9428
9429
9430
9431
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9425

class Mp2Settings < Struct.new(
  :bitrate,
  :channels,
  :sample_rate)
  SENSITIVE = []
  include Aws::Structure
end