Forward Midi events to your redis server and your OSC server.
Go to file
Sam fc318aa5c2 Better doc 2020-10-25 15:52:56 +01:00
libs Better doc 2020-10-25 15:52:56 +01:00
.gitignore Third commit 2020-10-05 13:54:25 +02:00
OSC3.py first commit 2020-10-02 23:33:24 +02:00
README.md Better doc 2020-10-25 15:52:56 +01:00
miredis.py add a clittols mode 2020-10-25 01:22:42 +02:00

README.md

Forward Midi events to redis/OSC

Miredis hooks to all midi devices connected and listen for events. Miredis can optionnaly hook to opensourced Link protocol (200+ music & videos apps) -> "/beat" & "/bpm" All events are forwarded to a redis server and an OSC server.

Clitools

Run :

python3 miredis.py

See options :

python3 miredis.py -h

To enable Link :

python3 miredis.py -link

New Features

  • Added verbose mode -v
  • Added redis subscribe events
  • Added Clitools program selection mode for Launchpads

OSC

/midi/noteon midichannel note velocity

/midi/noteoff midichannel note

/midi/cc midichannel ccnumber value

/midi/clock

/midi/start

/midi/stop

/beat beatnumber

/bpm bpm

Redis keys

"/midi/noteon/midichannel" value : "note/velocity"

"/midi/noteoff/midichannel" value : "note"

"/midi/cc/midichannel/ccnumber" value : "ccvalue"

"/beat" value : "beatnumber"

"/bpm" value : "currentbpm"

Redis : midi events published to "/midi/last_event"

"/midi/noteon/midichannel/note/velocity"

"/midi/noteoff/midichannel/note

"/midi/cc/midichannel/ccnumber/ccvalue"