lawless-legends/Platform/Apple/tools/ConvertMidi/README.md

15 lines
591 B
Markdown
Raw Normal View History

Converting MIDI files to internal music secquencer files:
cvtmid.py, the MIDI file converter, uses the mido package: https://mido.readthedocs.io/en/latest/
Simply put a MIDI file in the same directory as ctvmid.py and type:
2017-11-01 23:08:38 +00:00
./cvtmid.py midifile.mid > midifile.seq
The midifile.seq output file is an ACME assembly file that can be included in another assembly file, a PLASMA file, or assembled into a binary file which can be loaded later. Simply type:
2017-11-01 23:08:38 +00:00
acme --setpc 0x1000 -o seqfile.bin midifile.seq
The starting address is irrelevant, but ACME requires one to assemble properly.