Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.