File: feeddelay.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 (7 lines) | stat: -rw-r--r-- 237 bytes parent folder | download
1
2
3
4
5
6
7
SynthDef.new(\feeddelay, {
	|bus, feed, feedfreq|
	var osc,out;
	osc = In.ar(bus, 2);
	out = osc + Fb({		arg feedback;		osc = CombN.ar(HPF.ar(feedback*feed, feedfreq) + osc, 0.5, 0.25).tanh;	},0.5,0.125);
	ReplaceOut.ar(bus, osc)
}).add;