This is an old revision of the document!
Table of Contents
Animo (abandoned)
Animo is a set of open-source music oriented software I developed.
Rino
Rino is a live coding program based on the Lua programming language. It is meant to be used with other music software via the OSC protocol (Supercollider, VCV Rack, etc.).
BPM = 60
function loop_kick()
scplay("kick")
wait(1)
end
function loop_lead()
local freq
local dur
-- INIT
freq = pseq({220, 330, 440})
dur = rand({0.125, 0.25, 0.5})
-- PLAY
scplay("sine", {
"freq", freq,
"amp", 0.5
})
wait(dur)
end