Play layered multiple voices from one midi channel
Started by petedevries21




11 posts in this topic
petedevries21

53 posts 13 threads Joined: Nov 2021
16-12-21, 15:30 -
#2
I used a trick in my previous setup made with python and mido library.

I copied every incoming note message from channel one to channel 2 ( or 3,4...) and sent them all.


Something like this

for msg in keyboard:
     if msg.channel == 0:
         for channel in [1,2,3]:
             output.send(msg.copy(channel=channel))


Messages In This Thread
RE: Play layered multiple voices from one midi channel - by petedevries21 - 16-12-21, 15:30