Connexion rapide:  

Forum: General Discussion

Sujet Use Stems buttons pads to mute the instruments slowly
Hi! I trying to configure the pad buttons that I use for Stems. Now they can mute the Stems, but they mute it immediately. I like to make it to mute it slowly, lowering down the volume until its out. It's possible? If so what attributes I can use to do it in the mute_stem config?
 

Posté Thu 21 Mar 24 @ 9:58 pm
locoDogPRO InfinityModeratorMember since 2013
You wouldn't use mute_stem, you'd use a repeat_start script to lower the stem dial, then query if the dial is at zero, if so stop with repeat_stop

repeat_start scripts
 

Posté Thu 21 Mar 24 @ 10:10 pm
Thank you! I got it.

Using:

repeat_start "stemvol" 1000ms 10 & stem kick -5%

I can get a soft fade out from the Stem I want in 10 seconds.

I tryed to get the reverse effect using the var_equal option.

var_equal stem kick 50% ? repeat_start "stemvoldown" 1000ms 10 & stem kick -5% : repeat_start "stemvolup" 1000ms 10 & stem kick +5%

But I don't get it working, only get the volume down but don't made it up after.

So I made a Workaround using holding:

holding ? repeat_start "stemvolup" 1000ms 10 & stem kick +5% : repeat_start "stemvoldown" 1000ms 10 & stem kick -5%

So I can get it to mute and to normal volume when I want.
 

Posté Fri 22 Mar 24 @ 2:43 am
locoDogPRO InfinityModeratorMember since 2013
stem kick 0% ? repeat_start "stemvolup" 1000ms 10 & stem kick +5% : repeat_start "stemvoldown" 1000ms 10 & stem kick -5%

or maybe
stem kick 0.0 ? repeat_start stemvolup 200ms 50 & stem kick +0.01 & param_smaller stem kick 0.49 ? repeat_stop stemvolup : nothing : repeat_stop stemvolup & repeat_start stemvoldown 200ms -1 & stem kick -0.01 & stem kick 0.0 ? repeat_stop stemvoldown
 

Posté Fri 22 Mar 24 @ 2:48 am
The two ways works like a charm! Thank you very much!
 

Posté Fri 22 Mar 24 @ 6:59 pm