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)


10911
10912
10913
10914
10915
10916
10917
10918
10919
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 10911

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 Follow input will use the number of channels found in the audio source; choosing Mono gives you 1 output channel; choosing Stereo gives you 2. In the API, valid values are 0, 1, and 2.

Returns:

  • (Integer)


10911
10912
10913
10914
10915
10916
10917
10918
10919
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 10911

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)


10911
10912
10913
10914
10915
10916
10917
10918
10919
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 10911

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)


10911
10912
10913
10914
10915
10916
10917
10918
10919
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 10911

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)


10911
10912
10913
10914
10915
10916
10917
10918
10919
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 10911

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