File: fxout.scd

package info (click to toggle)
python-renardo-lib 0.9.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,220 kB
  • sloc: python: 10,999; sh: 34; makefile: 7
file content (9 lines) | stat: -rw-r--r-- 210 bytes parent folder | download
1
2
3
4
5
6
7
8
9
SynthDef.new(\fxout, {
	|bus, fx1, lpfx1, hpfx1|
	var osc,fxsig;
	osc = In.ar(bus, 2);
	fxsig = LPF.ar(osc, lpfx1);
	fxsig = HPF.ar(fxsig, hpfx1);
	Out.ar(2, Mix.ar(fxsig*fx1));
	ReplaceOut.ar(bus, osc)
}).add;