vote up 0 vote down star
1

Hi,

I need to encode several pictures shot by the iphone camera into a mp4 video file and I know FFMPEG can do this (the application TimeLapser and ReelMoments do it already). I plan to use this in my app iMotion (available in the appstore).

I successfully install and compile the ffmpeg for the iphone SDK with this link : http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2009-October/076618.html

But now I'm stuck here in my XCode project. What should I do next to use the FFMPEG library for video encoding ? The Apple documentation about external library using is very light and I just can find any tutorial on the web wich explain how to do this.

If anybody can help me, I would be very grateful..`

Thanks

Aurelien Potier

flag
1  
Be sure to comply with the LGPL if you're using ffmpeg. – Kenny Winker Nov 5 at 11:15
Also, if you are planning on submitting your application to the App Store be aware of the legal implications of selling software that uses ffmpeg. It may be infringing on patents in your jurisdiction (ffmpeg.org/legal.html). This may also impact your ability to get approval on the App Store. – Nick Haddad Nov 5 at 14:24
Yes, you will need to release either your source code or your object code for your application in order to comply with the LGPL when using ffmpeg as a static library: huyzing.com/2009/08/… – Brad Larson Nov 5 at 15:17

1 Answer

vote up 0 vote down

In the Project menu, select Edit Active Target "[...]".

Then in Build separator, make sure you have All Configuration selected and do the following:

  • search for 'Header Search Paths' and indicate where the FFmpeg headers are located;
  • search for 'Library Search Paths' and indicate where the compiled static library binaries (.a files) are located.

This should do it but there's one more neat trick in the latter. You can add a build condition to 'Library Search Paths' so that compiler will use different binaries for different architectures, i.e. you can compile seamlessly for both the Simulator and for the Device. Instruction below.

  • With the Library Search Paths row selected, click the the button on left bottom corner of the same window and choose Add Build Setting Condition;
  • Where appears 'Any SDK', select 'Any iPhone OS Simulator' and indicate the path to the x86 ffmpeg binaries.
  • Repeat the steps above replacing 'Any iPhone OS Simulator' with 'Any iPhone OS Device' and indicate the ARM ffmpeg binaries.

Below is an example of this kind of build settings.

alt text

link|flag

Your Answer

Get an OpenID
or

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