Quick Sign In:  

Forum: VirtualDJ Technical Support

Topic: MIDI ECHO FX Beat Length Knob Code
phcc13PRO InfinityMember since 2018
Hi VDJ Community!

I have two individual knobs on my media-players I can assign MIDI controls to and by default, act as a low-pass/high-pass filters depending on if I turn it ">50%" vs. "<50%". I have COLOR FXs already built into each channel of my mixer, so instead of never using those knobs on my media-players, I figured out how to activate the ECHO FX on both knobs when I simply turn them "<50%", and deactivate the FX if the knobs are "50%" or lower. I don't have control over the beat length within the ECHO FX currently.

My ultimate goal would be to have the media-player knobs start at "0%" with ECHO FX deactivated, then activate the ECHO FX from "0%-24%" a beat length of 1/4, "25%-49%" with a beat length of 1/2, "50%-74%" with a beat length of 3/4, and "75%-100%" with a beat length of 1.

Thank you for any insight to how this can be done :)

Best,

Andrew
 

Posted Sat 22 Jun 24 @ 7:05 pm
locoDogPRO InfinityModeratorMember since 2013
param_bigger 0.0 !? effect_active echo off : effect_active echo on & param_bigger 0.25 !? effect_beats echo 0.25 : param_bigger 0.5 !? effect_beats echo 0.5 : param_bigger 0.75 !? effect_beats echo 0.75 : effect_beats echo 1 
 

Posted Sun 23 Jun 24 @ 12:10 am
phcc13PRO InfinityMember since 2018
Thank you for your reply! The only small thing I tweaked to make sure it shut off was to adjust the very beginning of the code from 0.0 to 0.25 (see below):

param_bigger 0.25 !? effect_active echo off : effect_active echo on & param_bigger 0.26 !? effect_beats echo 0.25 : param_bigger 0.5 !? effect_beats echo 0.5 : param_bigger 0.75 !? effect_beats echo 0.75 : effect_beats echo 1
 

Posted Thu 27 Jun 24 @ 5:12 pm