Quick Sign In:  

Forum: VirtualDJ Technical Support

Topic: Trying to add effect_stems "Rhythm" to this script
I have this script on a knob. It's a filtered loop_roll that changes the loop duration and filter strength based on the rotation of the knob.

But now I'd like it to only affect the Rhythm stem. No matter where or how often I add effect_stems "Rhythm" to the loop_roll command, it still affects the entire track.

By chance are there any script gurus who might know how to make this work?

filter_resonance 0 & loop_roll video & set 'roll' 1 & filter &  param_smaller 5% ? var 'roll' ? loop_roll 0.0625 : nothing : param_smaller 20% ? var 'roll' ? loop_roll 0.125 : nothing : param_smaller 30% ? var 'roll' ? loop_roll 0.25 : nothing : param_smaller 45% ? var 'roll' ? loop_roll 0.5 : nothing : param_greater 95% ? var 'roll' ? loop_roll 0.0625 : nothing : param_greater 80% ? var 'roll' ? loop_roll 0.125 : nothing : param_greater 70% ? var 'roll' ? loop_roll 0.25 : nothing : param_greater 55% ? var 'roll' ? loop_roll 0.5 : nothing : effect 'Loop Roll' active off 
 

geposted Sun 18 Dec 22 @ 7:46 am
Was my misunderstanding of the command.

Solved by adding "effect_stems rhythm on & " at the start.

Got rid of the filter too, it was undercutting the effect at faster loops.
 

geposted Sun 18 Dec 22 @ 3:19 pm