Class: FMOD::Effects::LoudnessMeter Private
- Defined in:
- lib/fmod/effects/loudness_meter.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
This DSP is not intended for public use.
This unit analyzes the loudness and true peak of the signal.
Instance Attribute Summary collapse
-
#loudness ⇒ Pointer
Loudness info and maximum true peak level.
-
#state ⇒ Integer
Integration state * Minimum: -3 * Maximum: 1.
-
#weights ⇒ Pointer
Channel weightings for loudness.
Attributes inherited from Dsp
#active, #bypass, #channel_format, #input_count, #output_count, #parameter_count, #parent, #type, #wet_dry_mix
Attributes inherited from Handle
Method Summary
Methods inherited from Dsp
#[], #[]=, #add_input, bool_param, data_param, #disconnect, #disconnect_from, #enable_metering, float_param, from_handle, #get_bool, #get_data, #get_float, #get_integer, #idle?, #info, #input, #input_connection, #input_metering?, integer_param, #name, #output, #output_connection, #output_format, #output_metering?, #param_info, #play, #reset, #set_bool, #set_data, #set_float, #set_integer, #set_wet_dry_mix, #show_dialog, #to_s, type_map, #version
Methods inherited from Handle
#initialize, #int_ptr, #release, #to_s
Constructor Details
This class inherits a constructor from FMOD::Handle
Instance Attribute Details
#loudness ⇒ Pointer
Loudness info and maximum true peak level.
13 14 15 |
# File 'lib/fmod/effects/loudness_meter.rb', line 13 def loudness @loudness end |
#state ⇒ Integer
Integration state
-
Minimum: -3
-
Maximum: 1
13 14 15 |
# File 'lib/fmod/effects/loudness_meter.rb', line 13 def state @state end |
#weights ⇒ Pointer
Channel weightings for loudness.
13 14 15 |
# File 'lib/fmod/effects/loudness_meter.rb', line 13 def weights @weights end |