This is my final project for Music 254 at Stanford, taught by Eleanor Selfridge-Field and Craig Sapp.
The alignment tool "midi2score.cpp" is under "tools" folder, and thanks Craig for providing other codes for loading MIDI and humdrum files. Follow the steps below to align your MIDI and score:
| Name | Description |
|============|=============|
| tools | Location for the source code for the program. |
| tests | Test MIDI and Humdrum files to link. |
| bin | Output directory for compiled program. |
| src | Source code for support libraries: midifile, and humlib |
| include | Include files for support libraries. |
| lib | Directory for compiled support libraries. |
| obj | Temporary directory for storing support library object files. |
- Humdrum file for the score (See http://doc.verovio.humdrum.org for reference)
- MIDI file for the performance. The folder "tests" includes four song examples.
The example files "chopin-prelude28n20.mid" and "chopin-prelude28n20.krn" can be used to test the program:
Make
under the root directory.- To print the MIDI notes list, execute
bin/midi2score tests/chopin-prelude28n20.mid tests/chopin-prelude28n20.krn -m
- To print the Humdrum notes list, execute
bin/midi2score tests/chopin-prelude28n20.mid tests/chopin-prelude28n20.krn -h
- To print the alignment result, execute
bin/midi2score tests/chopin-prelude28n20.mid tests/chopin-prelude28n20.krn
The algorithm is still being improved. The idea is to do the one-by-one MIDI to score notes link with reference to the music context, which is simple but effective proved on four song examples. Details can be seen in "Music_254_final_project.pdf"
Contact: Miao Zhang (miaoz18@stanford.edu)