Recording MIDI CC offline?
I want to record MIDI data offline, i.e. generate a stream of CC values with a certain timestamp without having to wait a realtime recording of it. Is there a way to do this? Maybe hacking [seq]?
i´ve always found it the most useful way to build "normal" realtime stuff - and then render things in NRT driver mode.
everything else causes knots in my brain.
seq accepts text based format.
timestamp (ms) data (raw midi) ;
example cc 22 ch 1
0 176 22 1;
10 176 22 2;
20 176 22 3;
33 176 22 4;
35 176 22 5;
100 176 22 6;
1000 176 22 7;
you can write that manually, fill using uzi or whatever.
Great! Thank you, that's what I was hoping for