package
0.0.0-20240817073814-572668e6e5ec
Repository: https://github.com/chzchzchz/midispa.git
Documentation: pkg.go.dev
# README
trackscript
Examples
Play a, then a and b together.
bpm 120
pat aaa a.abc
pat bbb b.mid
aaa
aaa | bbb
Autodeclare patterns based on filename:
a
a | b
Create phrases from patterns:
phrase ac { a a c c }
phrase ba { b b a a }
ac ac ac ac
ba ba ba ba
Replicate a pattern or phrase:
phrase ac { a*2 c*2}
ac*4
(b;b;a;a)*4