vote up 0 vote down star

I have an iPhone application that uses small MPEG movies showing hand signs in the Dutch Sign Language. I get the movies from the Gebarencentrum, with their permission. But they are all in the old MPEG-1 format, and the iPhone won't play that. The allowed me to convert a couple of hunderd of the movies in batch and put them on my own website, but they won't let me do that with all 6000 movies. So I need to convert the movie from MPEG-1 to MP4 after getting it from their server to my iPhone. I have searched for libraries like ffmpeg, but none if it is already ported to Mono. Maybe I do not have to port ffmpeg to .NET/Mono since I can P/Invoke to the ffmpeg library. But can I install ffmpeg on my iPhone and if so, how?

I'm open to any ideas.

Thanks,

Richard

flag

1 Answer

vote up 2 vote down

Compile ffmpeg as a library in XCode and then link it to your program: http://wiki.monotouch.net/HowTo/Interop/Consuming%5F3rd%5FParty%5FObjC%5FLibraries

Since applications can only statically link on the iPhone, instead of using P/Invoke over a shared library name, like this:

[DllImport ("ffmpeg.so")] extern static int ffmpeg_init ();

You need to use the __Internal target:

[DllImport ("__Internal")] extern static int ffmpeg_init ();

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.