
Originally Posted by
DJ MiCL
I'm not following... but I am curious, can you explain a bit more about your issue?? Are you talking about a button or a fader? And what does it do? Sorry for my poor comprehension. A specific example would really help.
so i have a mapping in traktor to set the effect for the fx unit with mode set to "fader". in that mode the actual effect set depends on the value of the note/cc sent out to it as you'd normally be using that from an actual fader. i just send a single midi message to traktor to set the effect i want.
so this code:
Code:
send("traktor", "effect_select_unit_1", traktor.fx["Gater"])
send("traktor", "effect_select_unit_1", traktor.fx["Reverb"])
sends out this midi to traktor:
Code:
[traktor ] effect_select_unit_1 c=3 v=20 p=0
[traktor ] b2 4c 14 [traktor]
[traktor ] effect_select_unit_1 c=3 v=80 p=0
[traktor ] b2 4c 50 [traktor]
i.e: only the value/velocity changes, the 3rd byte. it's the same control in the tsi.
and what i *want* to be able to do, to switch the panel mode to single and then select an effect is with this:
Code:
traktor.fx_control{ unit = 1, mode = "single", fx = "Gater" }
which basically is a wrapper for this:
Code:
send("traktor", "fx_panel_mode_unit_1_single", ON)
send("traktor", "effect_select_unit_1", traktor.fx["Gater"])
which sends out this midi:
Code:
[traktor ] fx_panel_mode_unit_1_single c=6 v=127 p=0
[traktor ] b5 05 7f [traktor]
[traktor ] effect_select_unit_1 c=3 v=20 p=0
[traktor ] b2 4c 14 [traktor]
but won't work when the effects unit is in group mode, i.e: it does change the mode but not the effect. even when i put a delay in there - which is the really odd thing.
I used to not like the effects in Traktor because they felt more studio oriented than live performance -- just turning the dry/wet nob usually didn't produce interesting results. But now I'm sort of grateful for this because that's exactly what got me into custom mapping and TouchOSC. I would have been a total newbie in this area if Traktor had a really cool filter + effect or something by default.
the filters aren't bad in the fx units and i quite like the mixer section filters too. the effects i tend to like the most are the only school ones tho i guess like gater+delays. having all the effects synced to the beat is great tho - something i guess u don't get with other dj apps that let u use external plugins.
Bookmarks