Class: Aws::MediaConvert::Types::FlacSettings

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bit_depthInteger

Specify Bit depth (BitDepth), in bits per sample, to choose the encoding quality for this audio track.

Returns:

  • (Integer)


4960
4961
4962
4963
4964
4965
4966
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 4960

class FlacSettings < Struct.new(
  :bit_depth,
  :channels,
  :sample_rate)
  SENSITIVE = []
  include Aws::Structure
end

#channelsInteger

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.

Returns:

  • (Integer)


4960
4961
4962
4963
4964
4965
4966
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 4960

class FlacSettings < Struct.new(
  :bit_depth,
  :channels,
  :sample_rate)
  SENSITIVE = []
  include Aws::Structure
end

#sample_rateInteger

Sample rate in Hz.

Returns:

  • (Integer)


4960
4961
4962
4963
4964
4965
4966
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 4960

class FlacSettings < Struct.new(
  :bit_depth,
  :channels,
  :sample_rate)
  SENSITIVE = []
  include Aws::Structure
end