How to use FLAC in iPhone app?

I am developing an application for the iPhone that should use the Google Voice API, so my application must convert the voice recorded in m4a to flac. Of course, I have to use libflac, but all my attempts to compile a static library for iOS have failed due to linker errors.

So the question is: where can I find libflac static iOS files or what should I do to compile it?

+6
source share
2 answers

ScummVM has libflac in the iPhone settings. See: http://wiki.scummvm.org/index.php/Compiling_ScummVM/iPhone

I am sure you can look at their settings to figure this out.

+4
source

Take a look at this:

https://github.com/jhurt/FLACiOS

Simplifies the integration of libflac into ios applications ...

Good luck

0
source

All Articles