«chorus + filtros» by lambda

on 22 Jul'20 03:53 in
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
29
30
31
32
33
// le puse filtros a cuarteto
(
SynthDef("cuarteto", {arg freq=440, release=0.1;
	var in, s1,s2, s3, s4, mod,maxfreq, maxdelay, basedelay, maxdepth, out, mod1, depth, mfreq;
	s1 =  SoundIn.ar(0,mul:2);
	s2 = PitchShift.ar(s1,pitchRatio:1.1);
	s2 = DelayL.ar(s2,delaytime:0.01);
	s3 = PitchShift.ar(s1,pitchRatio:1);
	s3 = DelayL.ar(s3,delaytime:0.02);
	s4 = PitchShift.ar(s1,pitchRatio:1);
	s4 = DelayL.ar(s4,delaytime:0.03);

	out = Mix.ar([s1,s2,s3,s4]);

	// aki los filtros
	//out=BPF.ar(out,MouseX.kr(40,10000),MouseY.kr(0,1));
	//out=LPF.ar(out,MouseX.kr(40,10000),MouseY.kr(0,1));
	
	//out=MidEQ.ar(out,MouseX.kr(30,6000),MouseY.kr(0,0.5));


	Out.ar(0,out);
	Out.ar(1,out);
}).load(s);
)
a = Synth("cuarteto");
a.free


MoogFF.scopeResponse
HPF.scopeResponse
BRF.scopeResponse
Median.scopeResponse
raw 837 chars (focus & ctrl+a+c to copy)
reception
comments
lambda user 22 Jul'20 03:57

use audifonos para evitar feedback

use headphones to avoid feedback