«lazerdrone» by Callum Goddard

on 27 Mar'13 18:18 in dronelazerbleeps

A lazer sound then a drone with morse-code like bleeps. A byproduct of testing the triggering algorithm in the mono2eN SynthDef.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
s.boot;

(
SynthDef("lazerdrone", {
	var in, freq, hasFreq;

	
	in = SinOsc.ar(440 * LFSaw.kr(100, 1000));

	# freq, hasFreq = Pitch.kr(
					in,
					ampThreshold: 0.09,
					median: 1);
	freq = freq * hasFreq;
	//freq.poll;
	
	SinOsc.kr(freq).poll;
	
		Out.ar(0, in + 
		SinOsc.ar(440, 
			0, 
			Clip.kr(
				SinOsc.kr(freq), 
				0)
		)
	);
}).play;
)
raw 382 chars (focus & ctrl+a+c to copy)
reception
comments
wondersluyter user 22 Apr'13 06:23

This is sweet!