«electric hum» by LFSaw

on 26 May'17 11:10 in electricitylive codingsimple exampleentrypoint

Example sound explored in the temporary event Creating soundscapes with live coding techniques https://temporary.fi/experiments/creating-soundscapes-with-live-coding-techniques

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(
Ndef(\eHum).addSpec(\fFreq, ControlSpec(25, 1000, \lin, step: 25));
Ndef(\eHum).addSpec(\fRq, [0.01, 0.2]);
Ndef(\eHum).addSpec(\fFreqIdx, [0, 8, \lin, 0.2]);
Ndef(\eHum).fadeTime = 2;

Ndef(\eHum, {|fFreqIdx = 1, fRq = 0.1|
	var src = Impulse.ar([50, 75, 100]); // three sources
	var fFreq = (25 * (2 ** fFreqIdx));

	Splay.ar((BPF.ar(src, fFreq, fRq))* 8)
})
)

Ndef(\eHum).gui;
raw 396 chars (focus & ctrl+a+c to copy)
reception
comments