A tool for turning Dirtywave M8 songs into Midi tracks. Available for CLI or as a standalone GUI app, a VST3 or a CLAP plugin for Windows and OSX.
Precompiled 64 bit binaries for Linux, Windows and OS X can be found in the Releases.
There are 4 versions of midi-m8: The CLI app, a standalone GUI, a VST3 plugin, and a CLAP plugin. Only the CLI version is available on Linux. All versions are compiled for x64 Windows, x64 OSX and ARM arm64 OSX.
```
Usage: midi-m8 [OPTIONS]
Arguments:
Options: -o, --output
Or in other words, point the command at a .m8s
file, and you'll get a multi-track Midi file in return. You should be able to drag these Midi files into your DAW.
Basic
$ midi-m8 Songs/Demos/DEMO1.m8s
This will create a file tracks.midi
.
Choose output file name
$ midi-m8 Songs/Demos/DEMO1.m8s -o output.mid
This will create a file output.mid
.
Limit note length
$ midi-m8 -m 2 Songs/Demos/DEMO1.m8s
This caps the note length to 2 quarter notes.
Single track
$ midi-m8 --only-track 5 Songs/Demos/DEMO1.m8s
This will output only track 5 to track-5.midi
.
Starting position
$ midi-m8 -s 02 Songs/Demos/DEMO1.m8s
This will render Midi starting from the position 02
in the song.
That are not currently supported: - Time signatures - Tempo - Table support - Respect sequencer commands (other than GRV, which is already supported) - Instrument mode: output one track per instrument - Configurable channels - Instrument (program) changes - CC support
To compile your own version, you'll first need to install the Rust toolchain.
Then, the easiest way to wind up with midi-m8 is to $ cargo-install midi-m8
.
Alternately you could:
1. $ git clone https://github.com/AlexCharlton/midi-m8.git && cd midi-m8
2. cargo build --release
You'll now have a binary in the ./target/release/
directory.