/scores

Musical writings

Primary LanguageMakefile

Scores

Musical writings

License

Creative Commons License

These works are licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.

Licenses are applied to the works in their directory and all sub-directories, except for any sub-directory which contains its own license statement, in which case that license shall apply to works in that directory and its sub-directories.

Tools

MuseScore is an open source and free music notation software.

Lame MP3 Encoder

Super-Fat Universal Binary of the LAME 3.98.3 library for Mac OS X 10.5 PPC, PPC64, i386 and X86_64 architectures. Compiled by and distrubed by Nuclear Pixel.

Rename files

ls into the directory. set -- *-*; for file; do mv -- "$file" "${file//_/ }"; done; set -- *-*; for file; do mv -- "$file" "${file//-/ - }"; done

Build from the command line, but not individually extracted parts

find . -name *.mscz | while read -r FILE; do /Applications/MuseScore\ 2.app/Contents/MacOS/mscore -o "${FILE/.mscz/}.pdf" "$FILE"; /Applications/MuseScore\ 2.app/Contents/MacOS/mscore --export-score-parts -o "${FILE/.mscz/} - Score and Parts.pdf" "$FILE"; /Applications/MuseScore\ 2.app/Contents/MacOS/mscore -o "${FILE/.mscz/}.mid" "$FILE"; /Applications/MuseScore\ 2.app/Contents/MacOS/mscore -o "${FILE/.mscz/}.xml" "$FILE"; /Applications/MuseScore\ 2.app/Contents/MacOS/mscore -o "${FILE/.mscz/}.mp3" "$FILE"; done