[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[sc-users] Re: SupercolliderAU and FFT
Yeah but I still want to use the server-only method. So say my server-only
synthdef is, for example..
(
n = NetAddr("127.0.0.1", 9989);
s = Server.new("PLUG",n);
SynthDef("test", { arg out=0, freq = 10000, rq = 0.5;
var in;
in = AudioIn.ar([1]);
Out.ar(out, RLPF.ar(in, freq, rq));
}).play(s);
)
I'd want to control and automate 'freq' and 'rq' in logic or DP without
having to go back to SC to change them via a GUI or whatever.
Is this what you thought? Do I still need to fake a custom plugin?
Ta again.