Alltiny Chorus is a Java application for rendering sheet music on screen and to play the music using MIDI. Chorus is created for singers as support when learning new pieces of music. Chorus allows to adjust tempo and to mute selected voices.
Chorus is still work in progress. Following features are missing:
- render and interpret repetitions (also D.C., D.S.)
- render beat notations on screen (C, 3/4, ...)
- render and interpret fermatas
Chorus currently not supports any editing. You need to edit your music files as XML in a propriate editor. In the final version Chorus should have an edit-mode and as well be apropriate for layouting sheet music.
alltiny-chorus uses [gradle] for building. To compile and assemble the executable jar file do:
cd alltiny-chorus/chorus
gradle clean jar
the executable jar file can be found in:
alltiny-chorus/chorus/build/libs/
Depending on whether you use IntelliJ IDEA or Eclipse, [gradle] can create the project files for you:
- for IntelliJ IDEA
cd alltiny-chorus
gradle idea
- for Eclipse
cd alltiny-chorus
gradle eclipse
[gradle]:http://www.gradle.org - An open source building tool, much like maven, but rather more flexible.