Given 3 incoming MIDI CC streams, is there some combination of MUX modules that could turn those into a note. For example:
CC#20 = Gate. It switches from 0 to 127. 127 is note on. 0 is note off.
CC#21 = pitch
CC#22 = velocity
Creating MIDI events (notes) from CC
- KVRAF
- 13863 posts since 24 Jun, 2008 from Europe
Not in a simple, as far as i see.
Maybe you can find some way using the MIDI CC -> Modulation -> Audio -> Audio Envelope Follower.
Not sure, didn't try it.
Maybe you can find some way using the MIDI CC -> Modulation -> Audio -> Audio Envelope Follower.
Not sure, didn't try it.
-
- KVRist
- 39 posts since 16 Apr, 2004
with cockos reaper jsfxplugin :
you can adapt that if you have patience
desc:Alternate MIDI CC to Note On/Off
@block
while(midirecv(ofs, msg1, msg2, msg3)) (
msg1 == 0xB0 ? (
midisend(0, 0x90, msg3, 127);
midisend(0, 0x80, msg3, 127);
);
);
you can adapt that if you have patience
desc:Alternate MIDI CC to Note On/Off
@block
while(midirecv(ofs, msg1, msg2, msg3)) (
msg1 == 0xB0 ? (
midisend(0, 0x90, msg3, 127);
midisend(0, 0x80, msg3, 127);
);
);
