Connexion rapide:  

Forum: Wishes and new features

Sujet Stem settings per FX
Hello! One thing I would love to do is have different stem settings per FX- specifically color FX and other FX. Ideally, I'd like to be able to have color or other FX apply to instrumental, and then later be able to echo out the remaining vocal. I can't do this now because all effects follow the same stem settings, so I can't have a dedicated track echo out button while doing stem FX.
 

Posté Thu 19 Sep 24 @ 3:20 am
locoDogPRO InfinityModeratorMember since 2013
Call fx on stem slots instead of the broad stroke that is effect_stems
effect_stems applies all called fx to the specific stem,

specific fx on stem slots has a syntax
like this
effect_show_gui vocals 'echo out'

VERB, STEMSLOT, FXNAME, FXPARAMS
 

Posté Thu 19 Sep 24 @ 3:33 am
Thank you loco! I'll have to play with this.

One thing I'm struggling with is how to reference that effect later (ie assign a knob to a parameter), such as by slot? I tried referencing by slot number but no luck.
 

Posté Sat 21 Sep 24 @ 3:53 am
locoDogPRO InfinityModeratorMember since 2013
It's the same, it always needs slot and fxname,
VERB, STEMSLOT, FXNAME, FXPARAMS

effect_active vocals 'echo out' toggle
effect_slider vocals 'echo out' 1
effect_button vocals 'echo out' 1 toggle


I really should do a script school topic on it. But I figure you'll be on course with this.

I guess your difficulty is having a slot based hw dial and how it changes in this case when fxname must be used, you'd have to get slightly clever and discerning with fx choices & mapping.

something like
button to toggle
effect_active vocals 'echo out' toggle & set voxEO `effect_active vocals 'echo out'`
dial
var voxEO ? effect_slider vocals 'echo out' 1 : MAYBE ANOTHER VAR QUERY FOR OTHER FX :

thinking about it, it's not really a stem slot, it's specifying a stem in the place where a slot usually goes.
 

Posté Sat 21 Sep 24 @ 4:27 am