The B equalization suite is based on the Second Order Section (SOS) biquad UGen.
in |
input signal to be processed. |
freq |
center frequency. WARNING: due to the nature of its implementation frequency values close to 0 may cause glitches and/or extremely loud audio artifacts! |
bw |
the bandwidth in octaves between -3 dB frequencies. |
mul | |
add |
s.boot;
(
z = {
BBandPass.ar(
SoundIn.ar([0,1]),
MouseX.kr(20, 20000, \exponential),
MouseY.kr(0.0, 10.0, \linear), // bw
0.5); // mul
}.play)
z.release;
(
z = {
BBandPass.ar(
WhiteNoise.ar ! 2,
MouseX.kr(20, 20000, \exponential),
MouseY.kr(0.0, 10.0, \linear), // bw
0.5); // mul
}.play)
z.release;