You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey there,
very happy to find your script and tutorial, helped me alot.
I want to map the encoders from my Beatstep to volume faders in ableton. its working fine with absolute mode, but not doing much in relative 1/2/3 mode (Arturia Midi Control Center)
Is there any workaround?
thank you!
The text was updated successfully, but these errors were encountered:
dashezzl
changed the title
Fader->Encoder: Absolut vs. Relative mode
Fader->Encoder: Absolute vs. Relative mode
Jan 13, 2024
I have no idea! But there's probably a way to set this in the scripts. I will have a look but can't promise anything, I don't have a beatstep anymore and very limited time to work on this outside of work/life.
Looks like you'd use one of these: Live.MidiMap.MapMode.relative_smooth_two_compliment Live.MidiMap.MapMode.relative_binary_offset
`Live.MidiMap.MapMode.relative_signed_bit'
Implementing it is beyond me at the moment. I found these in the aforementioned de-compiled MIDI remote scripts.
Seems you'd have to import EncoderElement into the main script YourControllerName.py and change the _load_MIDI_map function.
Here's an example I found: def make_encoder(identifier, name): return EncoderElement(MIDI_CC_TYPE, 0, identifier, (Live.MidiMap.MapMode.relative_smooth_signed_bit), name=name)
Hey there,
very happy to find your script and tutorial, helped me alot.
I want to map the encoders from my Beatstep to volume faders in ableton. its working fine with absolute mode, but not doing much in relative 1/2/3 mode (Arturia Midi Control Center)
Is there any workaround?
thank you!
The text was updated successfully, but these errors were encountered: