Building ffmpeg with an executable output
- by Kevin Galligan
I generally don't like to ask such "you figure it out for me" questions, but I suspect this one will be really simple for a C++ guru. I want to build ffmpeg for Android, and I'd like it to output an executable rather than a set of libraries.
We've been using the guardian project's build:
https://github.com/guardianproject/android-ffmpeg
It does produce what we want, but I've found tweaking it for different architectures to be, at best, unpleasant.
I've gotten this version to build:
https://github.com/appunite/AndroidFFmpeg
It does a nice job of slicing and dicing different architectures, but produces a jni version.
There is a long story as to why I want the exe, but I'll skip it for now. Is there a flag that needs to be flipped? Some path or other setting? I am at this point fully baffled.
Thanks in advance.