Class: Aws::MediaConvert::Types::Mp3Settings

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

Overview

Required when you set Codec, under AudioDescriptions>CodecSettings, to the value MP3.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bitrateInteger

Specify the average bitrate in bits per second.

Returns:

  • (Integer)


9546
9547
9548
9549
9550
9551
9552
9553
9554
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9546

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

#channelsInteger

Specify the number of channels in this output audio track. Choosing Mono gives you 1 output channel; choosing Stereo gives you 2. In the API, valid values are 1 and 2.

Returns:

  • (Integer)


9546
9547
9548
9549
9550
9551
9552
9553
9554
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9546

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

#rate_control_modeString

Specify whether the service encodes this MP3 audio output with a constant bitrate (CBR) or a variable bitrate (VBR).

Returns:

  • (String)


9546
9547
9548
9549
9550
9551
9552
9553
9554
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9546

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

#sample_rateInteger

Sample rate in Hz.

Returns:

  • (Integer)


9546
9547
9548
9549
9550
9551
9552
9553
9554
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9546

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

#vbr_qualityInteger

Required when you set Bitrate control mode to VBR. Specify the audio quality of this MP3 output from 0 (highest quality) to 9 (lowest quality).

Returns:

  • (Integer)


9546
9547
9548
9549
9550
9551
9552
9553
9554
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 9546

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