Class: Aws::MediaConvert::Types::FlacSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::FlacSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
Required when you set Codec, under AudioDescriptions>CodecSettings, to the value FLAC.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bit_depth ⇒ Integer
Specify Bit depth (BitDepth), 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 (BitDepth), in bits per sample, to choose the encoding quality for this audio track.
5081 5082 5083 5084 5085 5086 5087 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 5081 class FlacSettings < Struct.new( :bit_depth, :channels, :sample_rate) SENSITIVE = [] include Aws::Structure end |
#channels ⇒ Integer
Specify the number of channels in this output audio track. Choosing Mono on the console gives you 1 output channel; choosing Stereo gives you 2. In the API, valid values are between 1 and 8.
5081 5082 5083 5084 5085 5086 5087 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 5081 class FlacSettings < Struct.new( :bit_depth, :channels, :sample_rate) SENSITIVE = [] include Aws::Structure end |
#sample_rate ⇒ Integer
Sample rate in Hz.
5081 5082 5083 5084 5085 5086 5087 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 5081 class FlacSettings < Struct.new( :bit_depth, :channels, :sample_rate) SENSITIVE = [] include Aws::Structure end |