1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
|
title:: FFT Overview
summary:: Overview of the Fast Fourier Transform (FFT) UGens
categories:: UGens>FFT
related:: Classes/FFT, Classes/IFFT
section:: FFT and IFFT
SuperCollider implements a number of UGens supporting Fast Fourier Transform (FFT) based processing. The most basic of these are FFT and IFFT (inverse-FFT) which convert data between the time and frequency domains:
code::
chain = FFT(buffer, input)
::
code::
output = IFFT(chain)
::
FFT requires a link::Classes/Buffer:: or link::Classes/LocalBuf::. The buffer's size must correspond to a power of 2, and must also be a multiple of the server's current link::Classes/ServerOptions#-blockSize#block size::. The window size is equivalent to the buffer size, and the window link::Classes/FFT#*new#overlap defaults to 2 (hop = 0.5)::. Both link::Classes/FFT:: and link::Classes/IFFT:: use a sine window by default. Their combination efficiently becomes a Hanning window (i.e. raised sine, that is, sine squared).
section::How FFT UGens communicate
link::Classes/FFT:: stores spectral data in the buffer, in the following format:
table::
## DC || nyquist || real 1f || imag 1f || real 2f || imag 2f || ... || real (N-1)f || imag (N-1)f
::
where code::f:: is the frequency corresponding to the window size, and code::N:: is the window size / 2.
The code::FFT:: UGen returns a signal (usually called strong::chain::) is constant at code::-1::, only when a new FFT window starts, the signal equals the buffer number. This is how subsequent FFT UGens can write to that buffer and know when to do this. The FFT information is not in the chain signal, but in the buffer.
code::
// the FFT return signal is -1, and for each starting window,
// it is the FFT buffer number
b = Buffer.alloc(s, 512); // allocate FFT buffer
b.bufnum; // note the buffer number
(
var dt = s.options.blockSize / s.sampleRate * 16; // plot 16 blocks
var min = -2, max = b.bufnum + 4;
// input is SoundIn, but we don't see this signal
{ FFT(b, SoundIn.ar) }.plot(dt, minval:min, maxval:max).plotMode_(\steps);
)
b.free; // free the buffer again
::
section:: Phase Vocoder UGens and Spectral Processing
In between an FFT and an IFFT one can chain together a number of Phase Vocoder UGens (i.e. code::PV_...::) to manipulate blocks of spectral data before reconversion. The process of buffering the appropriate amount of audio, windowing, conversion, overlap-add, etc. is handled automatically.
See link::#PV and FFT UGens in the Standard Library:: for a list of UGens.
code::
(
{
var in, chain;
in = WhiteNoise.ar(0.8);
chain = FFT(LocalBuf(2048), in); // encode to frequency domain
chain = PV_RandComb(chain, 0.95, Impulse.kr(0.4)); // process
IFFT(chain) // decode to time domain
}.play;
)
::
In order to expand PV UGens for a multichannel input signal, an appropriate array of buffers must be provided (not a multichannel buffer):
code::
(
{
var in, chain;
in = Ringz.ar(Impulse.ar([2, 3]), [700, 800], 0.1) * 5; // stereo input
chain = FFT({ LocalBuf(2048) } ! 2, in); // array of two local buffers
chain = PV_RandComb(chain, 0.95, Impulse.kr(0.4));
IFFT(chain) // returns a stereo out
}.play;
)
::
For more examples, see link::#Multichannel Expansion with FFT UGens::
subsection::Parallel FFT chains
PV UGens write their output data emphasis:: in place ::, i.e. back into the same buffer from which they read. PV UGens which require two buffers write their data into the first buffer, usually called 'bufferA'.
code::
(
{
var inA, chainA, inB, chainB, chain;
inA = LFSaw.ar(MouseY.kr(100, 1000, 1), 0, 0.2);
inB = Ringz.ar(Impulse.ar(MouseX.kr(1, 100, 1)), 700, 0.5);
// make two parallel chains
chainA = FFT(LocalBuf(2048), inA);
chainB = FFT(LocalBuf(2048), inB);
chain = PV_MagMul(chainA, chainB); // writes into bufferA
IFFT(chain) * 0.1
}.play;
)
d.free;
::
A similar example using a soundfile:
code::
// read the soundfile into a buffer
d = Buffer.read(s, Platform.resourceDir +/+ "sounds/a11wlk01.wav");
(
{
var inA, chainA, inB, chainB, chain;
inA = LFSaw.ar(100, 0, 0.2);
inB = PlayBuf.ar(1, d, BufRateScale.kr(d), loop: 1);
chainA = FFT(LocalBuf(2048), inA);
chainB = FFT(LocalBuf(2048), inB);
chain = PV_MagMul(chainA, chainB); // writes into bufferA
IFFT(chain) * 0.1
}.play;
)
d.free;
::
subsection::Copying FFT chains
Because each PV UGen overwrites the output of the previous one, it is necessary to copy the data to an additional buffer at the desired point in the chain in order to do parallel processing of input without using multiple FFT UGens. link::Classes/PV_Copy:: allows for this.
note::As of SC 3.7 instances of PV_Copy are added automatically where necessary for parallel processing. Existing code explicitly using PV_Copy should continue to work.::
code::
(
{
var in, in2, chainA, chainB, chainC;
var mod = LFNoise2.kr(2);
in = Blip.ar(mod.exprange(4000, 2), 231);
in2 = SinOsc.ar(mod.exprange(200, 4000));
chainA = FFT(LocalBuf(2048), in);
chainB = FFT(LocalBuf(2048), in2);
chainC = PV_Copy(chainA, LocalBuf(2048));
chainB = PV_MagMul(chainB, chainC);
XFade2.ar(
IFFT(chainA) * 0.4,
IFFT(chainB) * 0.1,
MouseX.kr(-1, 1)
);
}.play
)
::
PV processes can also share a single FFT UGen to process a signal in parallel. In the following example, 'chain0' and 'chain1' share the same FFT UGen. SuperCollider automatically copies the FFT data from 'chain' into hidden LocalBufs inside the Synth. In the following example, if the link::Classes/PV_PhaseShift:: UGen were operating directly on code::chainA::, then the two link::Classes/IFFT:: units would produce the same signal, which, when added together, would reinforce each other. Instead, the sound is nearly silent -- proving that code::chainB:: is in a different buffer, even though the function does not explicitly create it.
code::
(
x = { var inA, chainA, chainB;
inA = LFClipNoise.ar(100);
chainA = FFT(LocalBuf(2048, 1), inA);
chainB = PV_PhaseShift(chainA, pi);
// half-circle phase shift should result in an inverse signal
// in practice, ultra-low frequencies sneak through
// but you won't hear very much here
IFFT(chainA) + IFFT(chainB);
}.play;
)
::
subsection::Plotting magnitudes
Note that PV UGens convert as needed between cartesian (complex) and polar representations, therefore when using multiple PV UGens it may be impossible to know in which form the values will be at any given time. FFT produces complex output (see above). The following, however, returns a reliable magnitude plot:
code::
c = Buffer.alloc(s,2048,1);
(
x = { var in, chain, chainB, chainC;
in = WhiteNoise.ar;
chain = FFT(c, in);
0.01 * Pan2.ar(IFFT(chain));
}.play(s);
)
(
Routine({
3.do{arg i;
c.getToFloatArray(action: { arg array;
var z, x;
z = array.clump(2).flop;
// Initially data is in complex form
z = [Signal.newFrom(z[0]), Signal.newFrom(z[1])];
x = Complex(z[0], z[1]);
{ x.magnitude.plot('Initial', Rect(200, 600-(200*i), 700, 200)) }.defer
});
0.1.wait;
}}).play
)
x.free;
::
subsection::UGen access to FFT data
It is possible to manipulate the FFT data directly within a synth graph (if there doesn't already exist a PV UGen which will do what you want), using the methods pvcalc, pvcalc2, pvcollect. Here's an example which uses the methods link::Classes/SequenceableCollection#-clump:: and link::Classes/SequenceableCollection#-flop:: to rearrange the order of the spectral bins:
code::
c = Buffer.read(s, Platform.resourceDir +/+ "sounds/a11wlk01.wav");
(
x = {
var in, numFrames=2048, chain, v;
in = PlayBuf.ar(1, c, loop: 1);
chain = FFT(LocalBuf(numFrames), in);
chain = chain.pvcalc(numFrames, {|mags, phases|
/* Play with the mags and phases, then return them */
[mags, phases].flop.clump(2).flop.flatten
}, tobin: 250);
0.5 * IFFT(chain).dup
}.play;
)
x.free; c.free;
::
section:: Multichannel Expansion with FFT UGens
Care must be taken when using multichannel expansion with FFT UGens, as they require separate buffers. Code such as this can be deceptive:
code::
chain = FFT(bufnum, { WhiteNoise.ar(0.2) }.dup);
::
The above may seem to work, but does not. It does result in two FFT UGens, but as they both write to the same buffer, the second simply overwrites the data from the first, thus wasting CPU and accomplishing nothing.
When using multichannel expansion with FFT UGens it is necessary to ensure that each one writes to a different buffer. Here's an example of one way to do this:
code::
(
SynthDef("help-multichannel FFT", { |out=0| // bufnum is an array
var in, chain;
in = [SinOsc.ar(200, 0, 0.2), WhiteNoise.ar(0.2)];
chain = FFT(LocalBuf([2048, 2048]), in); // each FFT has a different buffer
// now we can multichannel expand as normal
chain = PV_BrickWall(chain, SinOsc.kr(-0.1));
Out.ar(out, IFFT(chain));
}).play;
)
// or using global buffers
b = { Buffer.alloc(s, 2048, 1) }.dup;
(
SynthDef("help-multichannel FFT", { |out=0, bufnum= #[0, 1]| // bufnum is an array
var in, chain;
in = [SinOsc.ar(200, 0, 0.2), WhiteNoise.ar(0.2)];
chain = FFT(bufnum, in); // each FFT has a different buffer
// now we can multichannel expand as normal
chain = PV_BrickWall(chain, SinOsc.kr(-0.1));
Out.ar(out, IFFT(chain));
}).play(s,[\bufnum, b]);
)
b.free;
::
Note that dup on a UGen just makes a reference to that UGen, because UGen defines -copy to simply return the receiver. (See link::Classes/UGen:: for more detail.)
code::
a = SinOsc.ar;
a.dup[1] === a
true
::
Code like code::IFFT(chain).dup:: is found throughout the PV help files , and is just a convenient way to copy a mono signal to stereo, without further computation.
See also link::Guides/Multichannel-Expansion::.
section:: PV and FFT UGens in the Standard Library
The following PV UGens are included in the standard SC distribution:
definitionlist::
## link::Classes/FFT:: || Fast Fourier Transform
## link::Classes/IFFT:: || Inverse Fast Fourier Transform
## link::Classes/PV_Add:: || complex addition
## link::Classes/PV_BinScramble:: || scramble bins
## link::Classes/PV_BinShift:: || shift and stretch bin position
## link::Classes/PV_BinWipe:: || combine low and high bins from two inputs
## link::Classes/PV_BrickWall:: || zero bins
## link::Classes/PV_ConformalMap:: || complex plane attack
## link::Classes/PV_CopyPhase:: || copy magnitudes and phases
## link::Classes/PV_Diffuser:: || random phase shifting
## link::Classes/PV_HainsworthFoote:: || onset detection
## link::Classes/PV_JensenAndersen:: || onset detection
## link::Classes/PV_LocalMax:: || pass bins which are a local maximum
## link::Classes/PV_MagAbove:: || pass bins above a threshold
## link::Classes/PV_MagBelow:: || pass bins below a threshold
## link::Classes/PV_MagClip:: || clip bins to a threshold
## link::Classes/PV_MagFreeze:: || freeze magnitudes
## link::Classes/PV_MagMul:: || multiply magnitudes
## link::Classes/PV_MagDiv:: || division of magnitudes
## link::Classes/PV_MagNoise:: || multiply magnitudes by noise
## link::Classes/PV_MagShift:: || shift and stretch magnitude bin position
## link::Classes/PV_MagSmear:: || average magnitudes across bins
## link::Classes/PV_MagSquared:: || square magnitudes
## link::Classes/PV_Max:: || maximum magnitude
## link::Classes/PV_Min:: || minimum magnitude
## link::Classes/PV_Mul:: || complex multiply
## link::Classes/PV_PhaseShift:: || shift phase of all bins
## link::Classes/PV_PhaseShift270:: || shift phase by 270 degrees
## link::Classes/PV_PhaseShift90:: || shift phase by 90 degrees
## link::Classes/PV_RandComb:: || pass random bins
## link::Classes/PV_RandWipe:: || crossfade in random bin order
## link::Classes/PV_RectComb:: || make gaps in spectrum
## link::Classes/PV_RectComb2:: || make gaps in spectrum
## link::Classes/UnpackFFT::, link::Classes/PackFFT::, link::Classes/Unpack1FFT:: || "unpacking" components used in pvcalc, pvcalc2, pvcollect (can also be used on their own)
::
For a full list of FFT UGens, see strong::UGens>FFT:: in the link::Browse#UGens>FFT:: page.
|