mpc, fink & more
long story short, there are several issues i encountered today:
- $PATH:
the environment variable didn't contain the path to my fink installation. seemed that the installation was somewhat old and the environment has not been set up. execute this command
echo '. /sw/bin/init.sh' >> ~/.bash_profile
and open a new terminal window. (thx to fritschi for the hint.)
(for completeness sake, if you want to export any path to your $PATH variable:echo 'export PATH=/my/path:$PATH' >> ~/.bash_profile)
- fink:
fink apropos mpcshows that there is only one matching package, namelymppdec. if you launch now the usual fink install routine withfink install mppdec, you will have to install "the following 7 additional packages:
audiofile audiofile-bin audiofile-shlibs esound esound-bin esound-common esound-shlibs". this will probably take its time, so we will go for the precompiled libraries:
sudo apt-get install mppdec
- mppdec:
at first glance themppdeccommand did not seem too complicated, but it took me some minutes to figure out how to make it work.
mppdec --aiff /Users/damian/Desktop/myMusic/*.mpc /Users/damian/Desktop/myMusic
did it pretty well for me. watch out for spaces or special chars in your path, it might make your shell cough. and notice that there is no trailing slash when indicating the output folder!
- mpc2aiff:
for those who hate cli applications and don't like to work in the terminal (i can completely understand), there exists a gui or rather graphical frontend to mppdec called mpc2aiff.



