Sign In:     


Forum: General Discussion

Topic: Modify the filter section on Prime GO
Hello, can you help me to use filter bank "B" on the Denon Prime Go + to work this way :

-in the center of the knob normal music
-turn the knob left only the steam "beat" , turn the knob on the other side and only the stem "vocal"

Thankssss

 

Posted Fri 03 Oct 25 @ 6:51 pm
Just select color FX vocal (assuming the track has stems)
 

that's not what I'm asking for thanks.

What I'm looking for is:

when select B button the filter potentiometer( is a center stop pot)act as is:

only Beat on one side of the potentiometer, in the center for normal music ,and on the other side only vocals.
 

is possible this modification in one potentiometer? ? thanks
 

yes, you press the button it sets a variable, with the variable set the dial acts differently. It's nothing I haven't covered before.
 

locoDog wrote :
yes, you press the button it sets a variable, with the variable set the dial acts differently. It's nothing I haven't covered before.


thanks locoDog , I understand the part when set a variable ... but how do I make it so that the" beat" sounds on one side and only the vocals sound on the other side of the potentiometer?

 

you'd be controlling 2 stem full* scripts both sides of the dial, when > 0.5 resetting one to 0.5 and controlling the other, when < 0.5 resetting the other then inverting your input and controlling the first.
 

locoDog wrote :
you'd be controlling 2 stem full* scripts both sides of the dial, when > 0.5 resetting one to 0.5 and controlling the other, when < 0.5 resetting the other then inverting your input and controlling the first.


Thanks locoDog can you share an example script? thanks

 

Don“t work as expected ... any help i'm a newbie scripting.......

param_bigger 0.5 ? stem "FullVocal" : mute_stem "FullRhythm"
param_smaller 0.5 ? stem "FullRhythm" : mute_stem "FullVocal"
 

I'm trying it first with the custom fader in the VDJ .. but only moving in in a part of the potentiometer.....

param_bigger 0.5 ? stem "FullVocal" : param_invert & stem fullrhythm 0.5


I don't know how to follow......
 

Near enough,
As a custom button dial without the variable switch.

set a & nothing & param_bigger 0.501 ? stem fullvocal & stem fullrhythm 0.5 : param_smaller 0.499 ? param_invert & stem fullrhythm & stem fullvocal 0.5 : stem fullvocal 0.5 & stem fullrhythm 0.5


As a hardware dial

var myFilterMode 0 ? filter : param_bigger 0.501 ? stem fullvocal & stem fullrhythm 0.5 : param_smaller 0.499 ? param_invert & stem fullrhythm & stem fullvocal 0.5 : stem fullvocal 0.5 & stem fullrhythm 0.5
 

Hi Thanksss . While you were answering, I continued to rack my brains and try to understand how the scripts work, and I managed to do this... i will test your code I assume it would be better done for sure... would you complete anything else?
I would also like to know how to reset the music without effects or stem so that it sounds normal when I change from A to B if I have the dial turned. THAnksss

here is the code ;What do you think?

button B

set 'colorstem' 1 & set 'filter' 0


button A

set 'filter' 1 & set 'colorstem' 0


LED button B (I don't know how to make it blink when any of the stems are in use, that is, the dial is not in the middle.)

var colorstem 1 ?  stem fullrhythm 0.5 ? on: blink 400ms : on: off


LED button A

var filter 1 ? not filter 50% ? blink 400ms : on : off


DIAL SWEAP

var colorstem 1 ? param_bigger 0.5 ? stem fullvocal 0.5 & stem fullrhythm : stem fullrhythm 0.5 & param_invert & stem fullvocal : var filter 1 ? filter : nothing