2 summary:: Flattens dynamics.
3 related:: Classes/Amplitude, Classes/Compander, Classes/CompanderD, Classes/Limiter
4 categories:: UGens>Dynamics
9 Normalizes the input amplitude to the given level. Normalizer will not
10 overshoot like link::Classes/Compander:: will, but it needs to look
11 ahead in the audio. Thus there is a delay equal to twice the value
12 of the code::dur:: parameter.
20 The signal to be processed.
23 The peak output amplitude level to which to normalize the input.
27 The buffer delay time. Shorter times will produce smaller delays
28 and quicker transient response times, but may introduce amplitude
37 // example signal to process
41 Impulse.ar(8, LFSaw.kr(0.25, -0.6, 0.7)),
42 0.001, 0.3, FSinOsc.ar(500));
50 Impulse.ar(8, LFSaw.kr(0.25, -0.6, 0.7)),
51 0.001, 0.3, FSinOsc.ar(500));
52 [z, Normalizer.ar(z, 0.4, 0.01)]