Quick Sign In:  

Forum: Addons

Topic: virtualFX - Page: 2
locodogPRO InfinityModeratorMember since 2013
Just gave the last block of code an edit and since I have a video of it in action, I'll post that too.

 

Posted Fri 30 Jul 21 @ 12:19 pm
locodogPRO InfinityModeratorMember since 2013
little one, annoyed I couldn't use colorfx filter on a locked fx loop [echo or echo out] so I made a virtualfx to control the slot base filter [with some always last logic] from the colorfx

name the FX MFilter.dll, name the ini MFilter_1.ini
[autoparams]
Slider DIAL A 0=0
String DIAL A 1=filter & param_cast & effect_slider 'filter' 1 & nothing & param_equal `param_bigger filter 0.515` `param_smaller filter 0.485` ? effect_active 'filter' off : effect_active 'filter' on
String LABEL A 3=
Slider DIAL B 2=2048
String DIAL B 5=
String LABEL B 6=
Slider DIAL C 4=2048
String DIAL C 7=
String LABEL C 12=
Switch BUTTON 1 8=0
String BUTTON 1 13=
Switch BUTTON 2 9=0
String BUTTON 2 14=
Switch BUTTON 3 10=0
String BUTTON 3 15=
String OnStart 16=
String OnStop 17=

 

Posted Wed 13 Oct 21 @ 5:51 am
NicotuxHome userMember since 2014
yes it looks like "effect_colorslider colorfx" does not apply to locked fx [echo or echo out and other ]

maybe I'm wrong but it looks like this custom slider do the same as the vfx

effect_colorslider filter & & param_add -0.5 & param_cast bool & effect_active filter
 

Posted Wed 13 Oct 21 @ 6:38 am
locodogPRO InfinityModeratorMember since 2013
nice, no query
 

Posted Wed 13 Oct 21 @ 6:51 am
so can I use this to make a effect to solo the vocal stem then echoout the vocal stem in post fader?
 

Posted Sun 07 Nov 21 @ 8:52 pm
locodogPRO InfinityModeratorMember since 2013
it just preforms scripts, if you can do it as a script you can do it with this too.
Just consider this calling a script from a fx slot.
 

Posted Sun 07 Nov 21 @ 9:45 pm
locodog wrote :
it just preforms scripts, if you can do it as a script you can do it with this too.
Just consider this calling a script from a fx slot.


so can it do that? if so how do make it do that?
just remember im the scripting dummy amongst you guys....
 

Posted Sun 07 Nov 21 @ 11:45 pm
locodogPRO InfinityModeratorMember since 2013
just add your script to onStart (and onStop if needed)
2 pages of examples you shouldn't need any handholding.
 

Posted Mon 08 Nov 21 @ 12:09 am
locodog wrote :
just add your script to onStart (and onStop if needed)
2 pages of examples you shouldn't need any handholding.


what script?
 

Posted Mon 08 Nov 21 @ 2:01 am
Djratedxxx919 wrote :
locodog wrote :
just add your script to onStart (and onStop if needed)
2 pages of examples you shouldn't need any handholding.


what script?

nevermind dont worry about it.... i just dont understand scripting

 

Posted Mon 08 Nov 21 @ 2:03 am
stlvsPRO InfinityMember since 2018
Hi there! I've download the virtualFX and I want to make the three knobs work like the EZRemix (Knob 1 manipulate Vocals, knob 2 manipulate Instru and knob 3 manipulate Beat), is that possible?

* In effect 3 slots layout when I'm enabling the effect I would like to be able to manipulate the vocals
** If there is such a script, please guide me how and/or where do I put it to get it done
*** I want to enable EZRemix by pushing the "virtualFX" button and manipulate Vocals, Instru and Beats by knob 1, 2 and 3, so the Buttons 1, 2 and 3 that they are down from knobs I don't want to do anything at all, except maybe renaming them to "Vocals", "Instru" and "Beat" so they just indicates the use of the knob above them

Many thanks in advance!
 

Posted Fri 25 Feb 22 @ 1:12 am
locodogPRO InfinityModeratorMember since 2013
like so, I called it stemFX ,so should you.

[autoparams]
Slider DIAL A 0=2048
String DIAL A 1=effect_slider 'stemFX' 1 & param_cast & stem 'fullvocal'
String LABEL A 2=
Slider DIAL B 3=2048
String DIAL B 4=effect_slider 'stemFX' 2 & param_cast & stem 'melody'
String LABEL B 5=
Slider DIAL C 6=2048
String DIAL C 8=effect_slider 'stemFX' 3 & param_cast & stem 'rhythm'
String LABEL C 7=
Switch BUTTON 1 8=0
String BUTTON 1 10=
Switch BUTTON 2 11=0
String BUTTON 2 12=
Switch BUTTON 3 13=0
String BUTTON 3 14=
String OnStart 16=
String OnStop 17=load_pulse ? : effect_slider 'stemFX' 1 0.5 & effect_slider 'stemFX' 2 0.5 & effect_slider 'stemFX' 3 0.5


edit, good to 1.5.1
 

Posted Fri 25 Feb 22 @ 1:56 am
stlvsPRO InfinityMember since 2018
locodog wrote :
like so, I called it stemFX...


Thank you so much for your immediate response!! That script you send me activates the ModernEQ option but I wanted to activate the EZRemix one, but I can live with that as well.. also I am wondering if is there a way to change the text from buttons 1, 2, 3 in to whatever the knob does so it just indicates the function of the knob above..
 

Posted Fri 25 Feb 22 @ 12:40 pm
stlvsPRO InfinityMember since 2018
** One thing I noticed also is that once i enable the stemFX it stays enabled no matter what, it doesn't even reset on load
 

Posted Fri 25 Feb 22 @ 2:14 pm
locodogPRO InfinityModeratorMember since 2013
you have the bare bones, you can change the dials to any of the
stem
verbs you want
, this doesn't need to be an active fx to work.
 

Posted Fri 25 Feb 22 @ 5:15 pm
stlvsPRO InfinityMember since 2018
this doesn't need to be an active fx to work.[/quote]

Is there any way to make it to reset on load??

 

Posted Sat 26 Feb 22 @ 3:38 am
locodogPRO InfinityModeratorMember since 2013
made an edit to the .ini code, if switched off by resetFxOnLoad all dials reset to 0.5
 

Posted Sat 26 Feb 22 @ 7:13 am
stlvsPRO InfinityMember since 2018
locodog wrote :
made an edit to the .ini code, if switched off by resetFxOnLoad all dials reset to 0.5


Are you gonna post the edit that you made here or is it somethinh that I have to do?
 

Posted Sat 26 Feb 22 @ 1:32 pm
locodogPRO InfinityModeratorMember since 2013
I edited the post with the .ini code, notice onStop has a script now.
^look up^
 

Posted Sat 26 Feb 22 @ 1:35 pm
stlvsPRO InfinityMember since 2018
locodog wrote :
I edited the post with the .ini code, notice onStop has a script now.
^look up^

It works great now, many many Thanks!!!
 

Posted Sat 26 Feb 22 @ 2:13 pm
77%