xi2

a plain text language that compiles to MIDI
git clone https://git.ce9e.org/xi2.git

commit
84cc22ede7de7db45592cd360e8b0427db37986f
parent
bbc8660dce4ad2065c084b744c0a15f82b4b773b
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-09-19 06:40
fixup HEAD~1

Diffstat

M iparser.py 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/iparser.py b/iparser.py

@@ -94,7 +94,7 @@ class IParser:
   94    94 if __name__ == '__main__':
   95    95     a = [(('0', '1'), '2'), '4', '5', '-', '', ['0', '4', '7'], '', '', '0', ['3', '-']]
   96    96     t = midi.Midi()
   97    -1     ip = IParser(a, t, 0, 60)
   -1    97     ip = IParser(t, a, 0, 60)
   98    98 
   99    99     with open('test.mid', 'wb') as fh:
  100   100         midi.write_file(fh, [t])