Class: Aws::MediaConvert::Types::AiffSettings

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb

Overview

Required when you set Codec to the value AIFF.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bit_depthInteger

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

Returns:

  • (Integer)


313
314
315
316
317
318
319
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 313

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

#channelsInteger

Specify the number of channels in this output audio track. Valid values are 0, 1, and even numbers up to 64. Choose 0 to follow the number of channels from your input audio. Otherwise, manually choose from 1, 2, 4, 6, and so on, up to 64.

Returns:

  • (Integer)


313
314
315
316
317
318
319
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 313

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

#sample_rateInteger

Sample rate in Hz.

Returns:

  • (Integer)


313
314
315
316
317
318
319
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 313

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