Quick Sign In:  

Forum: VirtualDJ Technical Support

Topic: Script Help - VDJ Stem Isolate

This topic is old and might contain outdated or incorrect information.

Hi guys,

so i am running a versadeck, and it has buttons to kill low,mid, and high on the EQ knobs itself. its a pretty neat feature of the hardware, i want this to now isolate the corresponding stem when in EZremix,modern Eq, or frequency mode. I tried scripts like eq_mode ? Frequency : kill_low_Eq : Only_stem "Vocal"

but these don]t seem to be working.

need first a script for a button to cycle through the modes. Eq_mode +1 only works for two options, the button just goes through frequency and the last used stem mode and doesn't go through all 3.

secondly the script to isolate the stem when i mode, and kill eq when in frequency mode

Help appreciated.
 

Posted Sat 04 Jul 20 @ 12:41 am
NicotuxHome userMember since 2014
1) You may try:
setting eqmode +1
or
setting eqmode 'frequency' ? setting eqmode 'EzRemix' : setting eqmode 'EzRemix' ? setting eqmode 'ModernEQ' : setting eqmode 'ModernEQ' ? setting eqmode 'Stem' :
setting eqmode 'Frequency'

2) look for stem at:
https://www.virtualdj.com/wiki/VDJscript_verbs_v8.html
You may try things like:
(may work)
eq_kill_low

or one of
setting eqmode 'frequency' ? eq_kill_low : Only_stem "Vocal"
setting eqmode 'frequency' ? eq_kill_low : mute_stem "Vocal"
setting eqmode 'frequency' ? eq_kill_low : stem_pad isolate "Vocal"
 

Posted Sat 04 Jul 20 @ 1:25 am
A thought just came to me:
As we have mute_stem then ideally we should also have solo_stem (rather than only_stem), as those are the two default options on the channel of a mixing board.

The button is called 'solo', not 'only' :-)
 

Posted Sat 04 Jul 20 @ 7:14 am
Thanks nicotux,

So this setting eqmode 'frequency' ? setting eqmode 'EzRemix' : setting eqmode 'EzRemix' ? setting eqmode 'ModernEQ' : setting eqmode 'ModernEQ' ? setting eqmode 'Stem' :
setting eqmode 'frequency'

works upto modenEQ, after that i doest go back to frequency :(. so it works but doesnt come back to frequency.

eq_mode +1 : this works only between ez remix and frequency, so that was a no go.

ideas?
 

Posted Sat 04 Jul 20 @ 4:54 pm
ok i corrected it to this

setting eqmode 'frequency' ? setting eqmode 'EzRemix' : setting eqmode 'EzRemix' ? setting eqmode 'ModernEQ' : setting eqmode 'ModernEQ' ? setting eqmode 'frequency'

now this works and i can cycle through the 3 modes :)

thanks guys.
 

Posted Sat 04 Jul 20 @ 4:56 pm
for the kill script this worked for me

setting eqmode 'frequency' ? eq_kill_low : stem_pad isolate "kick" & stem_pad isolate "hihat"

but this works for frequency and ez remix modes, i dont know how to have a 3rd set of kills for moderneq setting

ideas?
 

Posted Sat 04 Jul 20 @ 5:33 pm
NicotuxHome userMember since 2014
works upto modenEQ ? ... maybe due to spurious linefeed in copy/past

setting eqmode 'frequency' ? setting eqmode 'EzRemix' : setting eqmode 'EzRemix' ? setting eqmode 'ModernEQ' : setting eqmode 'ModernEQ' ? setting eqmode 'Stem' : setting eqmode 'Frequency'

(I added the following command to "Parameter 1" in my stem pad page to be used with parameters +/- arrows:
param_bigger 0 ? setting eqmode 'frequency' ? setting eqmode 'EzRemix' : setting eqmode 'EzRemix' ? setting eqmode 'ModernEQ' : setting eqmode 'ModernEQ' ? setting eqmode 'Stems' : setting eqmode 'Frequency' : setting eqmode 'stems' ? setting eqmode 'ModernEQ' : setting eqmode 'ModernEQ' ? setting eqmode 'EzRemix' : setting eqmode 'EzRemix' ? setting eqmode 'Frequency' : setting eqmode 'Frequency' ? setting eqmode 'Stems'
it is working fine in all skins not missing pads parameters - aka not in default ones that are missing almost all pad features but togglebutton : parameters, pressure, menu ...)

 

Posted Sat 04 Jul 20 @ 6:32 pm


(Old topics and forums are automatically closed)