dietcv
August 12, 2021, 8:18am
#1
hey, can these triggers be “converted” into Pattern expressions for \dur
?
trig = Impulse.ar(12 * (1 + (LFNoise2.kr(20 ! 2) * 0.5)));
trig = Impulse.ar(LFNoise2.kr(1).linexp(-1, 1, 1, 100));
I would like to use them via Pbind
to have all the control structures in the Patterns and not in the Synthdef. thanks
Hello @dietcv ,
try to have a look at these.
General tutorials: “Event patterns and LFOs” contains an overview of
related LFO-control setups with event patterns. “Event patterns and Functions”
GitHub - dkmayer/miSCellaneous_lib: SuperCollider extensions and tutorials: patterns, fx sequencing, g
Thank you Shiihs,
to use Pmono without killing the synth all the time it’s a really nice way to solve it!
So changing the amp I could “cut” the phrases, and I also like the Pwhite, Pgeom in the freq, it sounds much more similar to an LFO compared to my solution.
In the end, I tried to make everything a little more metric, to see how it sounds, maybe a little too rigid for my goal, but it gives me more control. I have to keep fix it. I had also considered the possibility of using a solution wh…
dietcv
August 12, 2021, 9:21am
#3
hey thanks alot .i know the tutorial and already figured out a way to deal with ctrlEnvs for modulating Synthdef parameters in a Pattern context see ctrlEnv merge Event \type but not with these modulating multichannel triggers from Impulse.ar
.