Class: Aws::MediaLive::Types::WavSettings

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-medialive/types.rb

Overview

Note:

When making an API call, you may pass WavSettings data as a hash:

{
  bit_depth: 1.0,
  coding_mode: "CODING_MODE_1_0", # accepts CODING_MODE_1_0, CODING_MODE_2_0, CODING_MODE_4_0, CODING_MODE_8_0
  sample_rate: 1.0,
}

Wav Settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bit_depthFloat

Bits per sample.

Returns:

  • (Float)


19736
19737
19738
19739
19740
19741
19742
# File 'lib/aws-sdk-medialive/types.rb', line 19736

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

#coding_modeString

The audio coding mode for the WAV audio. The mode determines the number of channels in the audio.

Returns:

  • (String)


19736
19737
19738
19739
19740
19741
19742
# File 'lib/aws-sdk-medialive/types.rb', line 19736

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

#sample_rateFloat

Sample rate in Hz.

Returns:

  • (Float)


19736
19737
19738
19739
19740
19741
19742
# File 'lib/aws-sdk-medialive/types.rb', line 19736

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