«fxLoop» by Schemawound

on 21 Jun'13 19:48 in fxlivecode

Code for using Supercollider as a realtime livecode FX processor for audio input. Blog post explaing this code: http://schemawound.com/post/53528545022/fxloop

1
2
3
4
5
6
7
8
9
10
11
12
13
(//*********PREPARE**********
p.pop;
//Any code that needs to access your own environment goes here
p = ProxySpace.push(s);
~fxLoop.play.fadeTime_(5);
)

(//*********FXLoop**********
~fxLoop = {
	var in = SoundIn.ar([0,1]);
	in;
}
)
raw 244 chars (focus & ctrl+a+c to copy)
reception
comments