vinc
27
I have a similar experience for this topic. 4-5 years ago when I got Pisound, I would make some very small Supercollider script for some small task. At that time Prophet '08 was my main gear to play with, it has a sequencer function, but you would have to pressing the key to make it keep going. I want the sequence latched when my drum machine start.
(
MIDIClient.init;
MIDIIn.connectAll;
m = MIDIOut.new(0);
MIDIdef.start(
\sysrtStart, {
m.noteOn(15, 60, 127) // MIDI channel 16, Middle C, velocity 127
}
);
MIDIdef.stop(
\sysrtStop, {
m.noteOff(15, 60, 127)
}
);
)
I am not good at SC and coding in general at all. But at that time I did make many small scripts for songs and tools purpose (mostly one-off).
5 Likes