Tone.Limiter
↳ EXTENDS Tone.AudioNodeTone.Limiter will limit the loudness of an incoming signal. It is composed of a Tone.Compressor with a fast attack and release. Limiters are commonly used to safeguard against signal clipping. Unlike a compressor, limiters do not provide smooth gain reduction and almost completely prevent additional gain above the threshold.
CONSTRUCTOR
new Tone.Limiter (The theshold above which the limiting is applied.
DEFAULTS
EXAMPLE
Members
.context
↝ Tone.Context READONLY #Get the audio context belonging to this instance.
Methods
.connect ( )
#optionally which output to connect from
optionally which input to connect to
this
connect the output of a ToneNode to an AudioParam, AudioNode, or ToneNode
.disconnect ( )
#Either the output index to disconnect if the output is an array, or the node to disconnect from.
this
disconnect the output
.toMaster ( )
#this
Connect ‘this’ to the master output. Shorthand for this.connect(Tone.Master)