Creating MIDI events (notes) from CC

Official support for: mutools.com
Post Reply New Topic
RELATED
PRODUCTS

Post

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

Post

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.

Post

OK. Another option would be to take an existing note and to change (modulate) its note and velocity. I think I know how to do that...

Post

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);
);
);

Post

Interesting idea. Thank you!

Post Reply

Return to “MuTools”