Question

I've been a happy user of flac on the OS X Terminal. I mostly use it to either encode, or decode wav -> flac or flac -> wav.

What I'm meeting nowadays is this:

flac -d *.flac
 dyld: Library not loaded: /usr/local/lib/libogg.0.dylib
  Referenced from: /usr/local/bin/flac
  Reason: no suitable image found.  Did find:
    /usr/local/lib/libogg.0.dylib: mach-o, but wrong architecture
    /usr/local/lib/libogg.0.dylib: mach-o, but wrong architecture
Trace/BPT trap: 5

What should I do? I've tried to brew uninstall libogg and brew install libogg, but that did not actually help.

Is there some easy commandline version for OS X Yosemite 10.10.4 for unflac/flac or should I switch to some OS X app that does it for me? Which would you recommend?

Was it helpful?

Solution

Try this:

brew uninstall libogg

and then:

brew install libogg --universal
Licensed under: CC-BY-SA with attribution
Not affiliated with apple.stackexchange
scroll top