Last active
March 3, 2023 14:47
-
-
Save Joris-van-der-Wel/f0ec7a6b0f62b244fcb156eb7420dff6 to your computer and use it in GitHub Desktop.
GNU Solfege on OS X
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download and extract from https://www.gnu.org/software/solfege/ for example "solfege-3.22.2.tar.gz" | |
brew install librsvg texinfo pygtk timidity | |
export PATH=`brew --prefix`/opt/gettext/bin:$PATH | |
export PKG_CONFIG_PATH=`brew --prefix`/opt/libffi/lib/pkgconfig:$PKG_CONFIG_PATH | |
./configure | |
make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PYTHONPATH=`brew --prefix`/lib/python2.7/site-packages:$PYTHONPATH | |
python solfege.py | |
# 1. File -> Preferences | |
# 2. External Programs | |
# 3. Converters -> MIDI to WAV -> "/usr/local/bin/timidity" | |
# 4. Audio File Players -> MIDI -> "/usr/local/bin/timidity" | |
# 4. Sound Setup -> Use external midi player -> Test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this is still working?