« Return to Thread: Pfx not working?

Re: Pfx not working?

by Stefan Nussbaumer-3 :: Rate this Message:

Reply to Author | View in Thread

lefty schrieb:
> hi, im trying to use Pfx to add individual
> effects to differnt pdefs, but its
> seems not working, the fx takes over
> the complete audiostream of other synths,too.
> any explanation why it doesnt work would be very helpful.
> thx
>  

Pbus might your friend.

stefan

>
> Pdef(\i1, Pbind(
>  
>         \dur, Prand([1/3, 2/3, 4/3, 2/3 , 1/3, 1/3, 1/3, 3]*0.5, inf),
> \amp,1.4,
>         \octave, 0,
> \scale, #[0,2,3,5,7] , \degree, x,
>
> \instrument,\bass
>
> ));
>
> ~bsgroup = Pgroup(i1);
> Pdef(\i, Pbus(Pfx(Pdef(~bsgroup), \distort));
>
>
> SynthDef(\distort, { arg out=0, pregain=40, amp=0.2, gate=1;
> var env;
> env = Linen.kr(gate, 0.05, 1, 0.1, 2);
> XOut.ar(out, env, (In.ar(out, 2) * pregain).distort * amp);
> }, [\ir, 0.1, 0.1, 0]).store;
>
> _______________________________________________
> sc-users mailing list
> sc-users@...
> http://lists.create.ucsb.edu/mailman/listinfo/sc-users
>
>  


--
=+=+=+=+=+=+=+=+=+=+=+=+=
Stefan Nussbaumer
Johnstrasse 18/2a
A-1150 Vienna
Austria
-------------------------
T:     +43 (0)1 956 20 35
M: +43 (0)699 11 33 41 79

_______________________________________________
sc-users mailing list
sc-users@...
http://lists.create.ucsb.edu/mailman/listinfo/sc-users

 « Return to Thread: Pfx not working?