Recording MIDI CC offline?

michelez's icon

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]?

Roman Thilenius's icon


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.

Source Audio's icon

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.

michelez's icon

Great! Thank you, that's what I was hoping for