Class: Aws::MediaConvert::Types::FlacSettings
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::MediaConvert::Types::FlacSettings
 
- Defined in:
- gems/aws-sdk-mediaconvert/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.
| 5534 5535 5536 5537 5538 5539 5540 | # File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 5534 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.
| 5534 5535 5536 5537 5538 5539 5540 | # File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 5534 class FlacSettings < Struct.new( :bit_depth, :channels, :sample_rate) SENSITIVE = [] include Aws::Structure end | 
#sample_rate ⇒ Integer
Sample rate in Hz.
| 5534 5535 5536 5537 5538 5539 5540 | # File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 5534 class FlacSettings < Struct.new( :bit_depth, :channels, :sample_rate) SENSITIVE = [] include Aws::Structure end |