0

Possible Duplicate:
Use FFMPEG on Android

I have all the required .so file for ffmpeg but I don't know how to use it with android application.

Any help or tutorial or sample app link will do a lot for me.

Thanks.

Community
  • 1
  • 1
Vinod Maurya
  • 4,167
  • 11
  • 50
  • 81
  • 1
    Hi, I think [this](http://stackoverflow.com/questions/5669220/ndk-how-to-use-a-generated-so-library-in-another-project) may help you – Jokahero May 05 '11 at 15:42

1 Answers1

1

Theoretically you need to write your own Android.mk and Application.mk files such a way that your Android application can handle the generated so files and wrap them.

You need to check the Android-NDK documentation.

You can also use the Bambuser's ffmpeg port for Android.

Aksel Fatih
  • 1,419
  • 18
  • 31