Skip to content

Python RTMidi misses Start MIDI message #22

Description

@max-circlefade

New issue on my Rpi 3b+ :(
I'm using the RTMidi Python lib to monitor incoming midi messages from a midi keyboard, plugged using USB. I can see all incoming messages (notes, stop, continue..). But not the "Start" ones. This is really strange because on my mac laptop I've got no problem seeing all the messages using the exact same code:

midi_in = rtmidi.MidiIn()
midi_in.open_port(1)

while True:
    message= midi_in.get_message()
    if message:
        print message[0]

If anyone has a hint regarding this it would awesome!! Thanks :)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions