Class: Aws::MediaConvert::Types::Mp3Settings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::Mp3Settings
- Includes:
- Structure
- Defined in:
- 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
-
#bitrate ⇒ Integer
Specify the average bitrate in bits per second.
-
#channels ⇒ Integer
Specify the number of channels in this output audio track.
-
#rate_control_mode ⇒ String
Specify whether the service encodes this MP3 audio output with a constant bitrate (CBR) or a variable bitrate (VBR).
-
#sample_rate ⇒ Integer
Sample rate in Hz.
-
#vbr_quality ⇒ Integer
Required when you set Bitrate control mode to VBR.
Instance Attribute Details
#bitrate ⇒ Integer
Specify the average bitrate in bits per second.
9792 9793 9794 9795 9796 9797 9798 9799 9800 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9792 class Mp3Settings < Struct.new( :bitrate, :channels, :rate_control_mode, :sample_rate, :vbr_quality) SENSITIVE = [] include Aws::Structure end |
#channels ⇒ Integer
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.
9792 9793 9794 9795 9796 9797 9798 9799 9800 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9792 class Mp3Settings < Struct.new( :bitrate, :channels, :rate_control_mode, :sample_rate, :vbr_quality) SENSITIVE = [] include Aws::Structure end |
#rate_control_mode ⇒ String
Specify whether the service encodes this MP3 audio output with a constant bitrate (CBR) or a variable bitrate (VBR).
9792 9793 9794 9795 9796 9797 9798 9799 9800 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9792 class Mp3Settings < Struct.new( :bitrate, :channels, :rate_control_mode, :sample_rate, :vbr_quality) SENSITIVE = [] include Aws::Structure end |
#sample_rate ⇒ Integer
Sample rate in Hz.
9792 9793 9794 9795 9796 9797 9798 9799 9800 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9792 class Mp3Settings < Struct.new( :bitrate, :channels, :rate_control_mode, :sample_rate, :vbr_quality) SENSITIVE = [] include Aws::Structure end |
#vbr_quality ⇒ Integer
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).
9792 9793 9794 9795 9796 9797 9798 9799 9800 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9792 class Mp3Settings < Struct.new( :bitrate, :channels, :rate_control_mode, :sample_rate, :vbr_quality) SENSITIVE = [] include Aws::Structure end |