Class: Aws::MediaConvert::Types::AiffSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::AiffSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
Required when you set Codec to the value AIFF.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bit_depth ⇒ Integer
Specify Bit depth, in bits per sample, to choose the encoding quality for this audio track.
-
#channels ⇒ Integer
Specify the number of channels in this output audio track.
-
#sample_rate ⇒ Integer
Sample rate in Hz.
Instance Attribute Details
#bit_depth ⇒ Integer
Specify Bit depth, in bits per sample, to choose the encoding quality for this audio track.
278 279 280 281 282 283 284 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 278 class AiffSettings < Struct.new( :bit_depth, :channels, :sample_rate) SENSITIVE = [] include Aws::Structure end |
#channels ⇒ Integer
Specify the number of channels in this output audio track. Valid values are 1 and even numbers up to 64. For example, 1, 2, 4, 6, and so on, up to 64.
278 279 280 281 282 283 284 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 278 class AiffSettings < Struct.new( :bit_depth, :channels, :sample_rate) SENSITIVE = [] include Aws::Structure end |
#sample_rate ⇒ Integer
Sample rate in Hz.
278 279 280 281 282 283 284 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 278 class AiffSettings < Struct.new( :bit_depth, :channels, :sample_rate) SENSITIVE = [] include Aws::Structure end |