Serial Midi Problem

M
mirco posted Aug 18 '15, 18:21:

Hi to all
i have a problem with serial midi, if i use a Nord Lead 2x the polifony are ok and velocity of keyboard is ok, if i use a Kurweil pc361 some note remainig on and the poly is not good, morever the passage from note C to D for examples is very slow, any idea ?

Regards
Mirco

M
mirco posted Aug 19 '15, 17:39:

Hi, any news about midi serial ?
Regards
Mirco

M
mirco posted Aug 19 '15, 19:13:

Rasp have won ..... i connect my keyboard with USB Port .....

D
Damin Park posted Apr 3 '16, 22:34:

Hi Mirco, I'm having the same problems with notes lingering and missing notes when playing quickly with my LMK2+. Did you ever find a solution? I'm using midi-out to USB using M-Audio USB Midisport Uno, but the cable works perfectly to send MIDI messages to my computer.

Thanks

J
jpg posted Apr 5 '16, 00:08:

Same behavior than Damin, sometimes with some notes that came again even without pressing a key.
My keyboard (Microkorg XL) is connected by usb, the cable is ok with other devices.

F
Florian Ostertag posted Apr 25 '16, 18:07:

Had the same problem. In my case it was a thing called "Midi Running Status" some keyboards "compress" Midi if more than one key is pressed at the same time. The Midi Keyboard only sends one Note On Command and then just keys and velocity. You can read about it here:

http://blog.cornbeast.com/2012/12/beware-of-midi-running-status/

The decoding of this kind of compression doesn't seem to be implemented in Samplerbox.

J
jpg posted Apr 28 '16, 23:45:

Very interesting! Thank you Florian.
Do somebody know how to solve this problem? :-)

F
Florian Ostertag posted May 3 '16, 23:02:

I changed some of the code in samplerbox.py It is the part "USE_SERIALPORT_MIDI" and the function MidiSerialCallback() that U changed. It works for testing purposes. So I know that the Running Status was the Problem. But I haven't fully checked everything that could happen on the midi side (like sysex commands, Midi Clock...). So far it only handles StatusBytes with 2 following DataBytes. You can develop it further if you want to. :-)

if USE_SERIALPORT_MIDI:
import serial

ser = serial.Serial('/dev/ttyAMA0', baudrate=38400)       # see hack in /boot/cmline.txt : 38400 is 31250 baud for MIDI!

def MidiSerialCallback():

    message = [0, 0, 0]
    i = 0

    while 1:
        input=ord(ser.read(1))
        if (input>>7) != 0:  #StatusByte received, store it 
            message[0] = input    
            i = 1             #following Databyte will be 1st Databyte
        elif (input>>7) == 0: #DataByte recieved
            if i == 1:
                message[1] = input
                i = 2         #next DataByte will be 2nd DataByte
            elif i == 2:
                message[2] = input
                i = 1          #next DataByte will be 1st DataByte again
                MidiCallback(message, None) 

MidiThread = threading.Thread(target = MidiSerialCallback)
MidiThread.daemon = True
MidiThread.start()
F
Florian Ostertag posted May 4 '16, 00:56:

Oh and it doesn't do Program Changes at this point.

J
jpg posted Jun 4 '16, 20:52:

Florian, I try your code today but it does not seem to solve the problem, does it?
If I quickly play several notes, some of them are played again by themselves.
I don't know how to investigate on this problem. Any solution?

R
r.meurer posted Nov 17 '16, 15:49:

Same Problem with the newest Firmware :-(

R
r.meurer posted Nov 17 '16, 16:53:

sorry I was wrong, my Paspberry Pi 2B as well as the Raspberry Pi 3 only works with the old Image samplerbox_20150618.img
The newer Images:
samplerbox_20160831.img
samplerbox_20161114.img
does not do any Sound. NOTHING, only the old Image works for me with the well known MIDI Running Status BUG :-(
What may I di wrong?

P
Pavel posted Feb 8 '17, 18:37:
R
Roel van de Laar posted Dec 30 '17, 14:21:

How do I use this solution? My sequencer doesn't send note off messages, only note on/velocity 0.
I'm running a new image of samplerbox on a Pi3. I don't see a samplerbox.py in my root folder

R
Roel van de Laar posted Dec 31 '17, 15:30:

Ok, I found out how I can edit samplerbox.py with SSH. But when I just paste the code of Pavel's solution into it, my samplerbox freezes during start up. I'm not a programmer at all so maybe I'm missing something really obvious. I'm just trying all kind of things without succes. I hope someone can point me in the right direction to fix this. Thanx in advance!

...

  (not published)
  I want to post as guest
 

Post