Class: Aws::MediaConvert::Types::Mp2Settings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::Mp2Settings
- 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
-
#bitrate ⇒ Integer
Specify the average bitrate in bits per second.
-
#channels ⇒ Integer
Set Channels to specify the number of channels in this output audio track.
-
#sample_rate ⇒ Integer
Sample rate in Hz.
Instance Attribute Details
#bitrate ⇒ Integer
Specify the average bitrate in bits per second.
9787 9788 9789 9790 9791 9792 9793 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9787 class Mp2Settings < Struct.new( :bitrate, :channels, :sample_rate) SENSITIVE = [] include Aws::Structure end |
#channels ⇒ Integer
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.
9787 9788 9789 9790 9791 9792 9793 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9787 class Mp2Settings < Struct.new( :bitrate, :channels, :sample_rate) SENSITIVE = [] include Aws::Structure end |
#sample_rate ⇒ Integer
Sample rate in Hz.
9787 9788 9789 9790 9791 9792 9793 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 9787 class Mp2Settings < Struct.new( :bitrate, :channels, :sample_rate) SENSITIVE = [] include Aws::Structure end |