I am making an 6shot sampler and it works pretty well but I stumpled upon an issue with the expression
I have two faders green for sample start adresss and red for end (range 0-1) both are multiplied by the length of the audio file ( in samples =44100 )
FOr that I've used the expression where $f1 an $f2 are the faders an $f3 is a static value ( outside the expression , 44100 samples length of array
°
Like this expr $f1*$f3;$f2*$f3 ..because I've used ; I get two outputs but the problem is that the second output is only active when the first inlet is banged ( hence the bang under fader 2 but I don't need that )
Ovioiusly I could just use two seperate expressions and be done with it , but I wonder if there's another solution ?
-
Need some help ...expression
-
@gentleclockdivider Two {expr]s is the way to go here. This is the general logic of pd, left inlet is the hot inlet and the inlet which produces output, all other inlets are cold and just set parameters without producing output.