For a small personal project I've been looking for the best way to convert a .wav to .flac in Xcode Mac OS X project (so no iOS). I read that it's the best way to do this by running a shellscript. I found one which perfectly does the job when trying in terminal. It uses the flac and metaflac binaries installed on my mac.
However, when running it in Xcode, it does not seem to be able to find those. The shellscript is included in my Xcode project and is looking for the binaries in the following way:
FLAC=$(which flac 2>/dev/null)
METAFLAC=$(which metaflac 2>/dev/null)
Searching for days now without coming any step closer to a sullotion. How to tackle this problem?
Thanks
