«MoaningDialogue Synth» by Manolis

on 17 Feb'15 01:17 in simplemoaningdialoguefrog

One of the first synths I made. A frog-like sounding synth, with a dialogue between the left and the right channel. I've also notated some simple tweaks.

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
a = Synth(\MoaningDialogue)

//COOL TWEAKS
//AngryTweak
a.set(\feedback, 29,\freq, 6)
//CalmTweak
a.set(\feedback, 60, \freq, 0.8)
//WeirdTweak
a.set(\feedback, 2.8, \freq, 2)

(
SynthDef(\MoaningDialogue, {
	|rateL = 0.2, rateR = 0.3, freq = 2, feedback = 50, mul = 1 , lpfreq = 2500|
	Out.ar(0,
		FreeVerb.ar(
			BLowPass.ar(
				SinOscFB.ar(
					LFDNoise1.kr([rateL, rateR], freq), feedback;
				, mul),
				lpfreq,
				0.2
			),
			0.3,
			0.0
		)
	)}
).add
)
raw 491 chars (focus & ctrl+a+c to copy)
reception
comments
Bryan Christophe Green user 17 Feb'15 03:06

This is REALLY cool! Thanks for posting-- yet another great example for me to learn from...