Reputation: 1733
Has anyone used ffmpeg on iphone? How do I go about compiling ffmpeg on iphone? And on OS X?
Upvotes: 0
Views: 651
Reputation: 39750
On OS X, it is as simple as running macports,
for the iphone the situation is a little more complex, you'll need to run the ./configure script your self and use the --cross-prefix option to build binaries for the arm processor, you'll also need to change the make file to build static libraries. You'll also need to manage all the dependencies your self and repeat the same process for each required lib.
Finally keep in mind that ffmpeg is licensed under LGPL so if you statically link your iphone app to it you'll need to release your source code (under some interpretations of the LGPL)
Upvotes: 2