-
I have been trying different things for a day now, but I just cannot figure out how to send a noteOn event to my Behringer Xtouch with zero velocity, it keeps changing the velocity to one before sending out. If did find the hint that midi2 notes converted to midi1 will be transformed changing the velocity but I really don't know how I can avoid this behaviour....
Any tipps on what I can do to actually send a noteOn with velocity = 0 ? Thanks, Jan |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Yes it appears Core MIDI is doing that translation (which is part of the MDI 2.0 spec). The only workaround may be to force older non-UMP MIDI 1.0 API. Just before calling midiManager.preferredAPI = .legacyCoreMIDI |
Beta Was this translation helpful? Give feedback.
Yes it appears Core MIDI is doing that translation (which is part of the MDI 2.0 spec).
The only workaround may be to force older non-UMP MIDI 1.0 API.
Just before calling
midiManager.start()
, try this: