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)


271
272
273
274
275
276
277
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 271

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 1 and even numbers up to 64. For example, 1, 2, 4, 6, and so on, up to 64.

Returns:

  • (Integer)


271
272
273
274
275
276
277
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 271

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

#sample_rateInteger

Sample rate in Hz.

Returns:

  • (Integer)


271
272
273
274
275
276
277
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 271

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