I keep trying to map the "strength" (ACTION: "effect_slider 1") parameter of the "mic fx", but the "deck fx" strength is being mapped instead. It seems like none of the "mic fx" parameter are mappable.
Inviato Thu 26 Nov 20 @ 7:00 pm
Try : effect_slider 'mic' 1
Need to tell in the script where and what you are intending to use on...
Same way you probably mapped already the on/off button, like for example : effect_active 'mic' 'reverb'
Need to tell in the script where and what you are intending to use on...
Same way you probably mapped already the on/off button, like for example : effect_active 'mic' 'reverb'
Inviato Thu 26 Nov 20 @ 8:01 pm
Thanks for helping me out, your script worked. I was doing it the easy way by clicking on the icon of the mic parameter and letting VDJ map it for me. It seems that method is half baked on the "mic fx".
Inviato Sun 29 Nov 20 @ 8:41 pm
Hi .
Can You also tel me how can I map the command effect_colorslider for other FX parameter , for Example effect_colorslider 1 , effect_colorslider 2 ?
I have try it but it only works for FX Parameter one ever..
Greating Dani
Can You also tel me how can I map the command effect_colorslider for other FX parameter , for Example effect_colorslider 1 , effect_colorslider 2 ?
I have try it but it only works for FX Parameter one ever..
Greating Dani
Inviato Sun 29 Nov 20 @ 11:32 pm
effect_slider 'colorfx' 1
effect_slider 'colorfx' 2
...
only for current colorfx in slot 1
a third parameter being a value to set
same apply to mic, aux, sampler, releasefx, colorfx, colorfx_sampler, audioonlyvisualisation, transition...
for all effect_* and video_* verbs
(only mixfx does not work this way and does apparently not allow slider/buttons to be set)
effect_colorslider 1 1
effect_colorslider 1 2
effect_colorslider 2 1
...
color slot number needed (1..4) or fxname
effect_colorslider 'echo' 2
a third parameter being a value to set
same apply to effect_mixfx
effect_slider 'colorfx' 2
...
only for current colorfx in slot 1
a third parameter being a value to set
same apply to mic, aux, sampler, releasefx, colorfx, colorfx_sampler, audioonlyvisualisation, transition...
for all effect_* and video_* verbs
(only mixfx does not work this way and does apparently not allow slider/buttons to be set)
effect_colorslider 1 1
effect_colorslider 1 2
effect_colorslider 2 1
...
color slot number needed (1..4) or fxname
effect_colorslider 'echo' 2
a third parameter being a value to set
same apply to effect_mixfx
Inviato Mon 30 Nov 20 @ 2:14 am
Nicotux wrote :
effect_slider 'colorfx' 1
effect_slider 'colorfx' 2
...
only for current colorfx in slot 1
a third parameter being a value to set
same apply to mic, aux, sampler, releasefx, colorfx, colorfx_sampler, audioonlyvisualisation, transition...
for all effect_* and video_* verbs
(only mixfx does not work this way and does apparently not allow slider/buttons to be set)
effect_colorslider 1 1
effect_colorslider 1 2
effect_colorslider 2 1
...
color slot number needed (1..4) or fxname
effect_colorslider 'echo' 2
a third parameter being a value to set
same apply to effect_mixfx
effect_slider 'colorfx' 2
...
only for current colorfx in slot 1
a third parameter being a value to set
same apply to mic, aux, sampler, releasefx, colorfx, colorfx_sampler, audioonlyvisualisation, transition...
for all effect_* and video_* verbs
(only mixfx does not work this way and does apparently not allow slider/buttons to be set)
effect_colorslider 1 1
effect_colorslider 1 2
effect_colorslider 2 1
...
color slot number needed (1..4) or fxname
effect_colorslider 'echo' 2
a third parameter being a value to set
same apply to effect_mixfx
I have try to test this but it dont work , try it...
effect_colorslider 1 1
effect_colorslider 1 2
effect_colorslider 2 1
For Standart FX not only ColorFX , I have try this for a the RollMach3 FX , Parameter 1 , 2 , 3 to map as ColorSlider
Example effect_colorslider 'RMX-Rollmach3' 1 or effect_colorslider 'RMX-Rollmach3' 2 , for Parameter Slider 1 or 2 ;-)
Inviato Mon 30 Nov 20 @ 2:00 pm
i apologies this one is totally wrong, and hard to explain
effect_colorslider does only apply to standard effect, it is related to how to handle the first slider of the effect (or specific color_slider define in the effect)
this is not related to colorfx, just handle the slider the same way
its curve is <100%..0..100%>
the '<' and '>' ARE part of the display value
effect_colorfx 1 "reverb" does exactly the same
effect_colorslider 1 [value]
or
effect_colorslider 'eq10' [value]
related to standard slot 1 or eq10 fx in no a slot
effect_slider 'colorfx' 2 does the job but only for the colorfx slot
i.e. RoomSize for reverb
not all effects can be selected as a colorfx
effect_colorslider does only apply to standard effect, it is related to how to handle the first slider of the effect (or specific color_slider define in the effect)
this is not related to colorfx, just handle the slider the same way
its curve is <100%..0..100%>
the '<' and '>' ARE part of the display value
effect_colorfx 1 "reverb" does exactly the same
effect_colorslider 1 [value]
or
effect_colorslider 'eq10' [value]
related to standard slot 1 or eq10 fx in no a slot
effect_slider 'colorfx' 2 does the job but only for the colorfx slot
i.e. RoomSize for reverb
not all effects can be selected as a colorfx
Inviato Mon 30 Nov 20 @ 4:28 pm