How to use libffmpeg.so in Android project?

14,677

Solution 1

This tutorial provides a detail explanation about this topic. How to Build Android Applications Based on FFmpeg by An Example

Solution 2

You can find the example How to load another .so file in your android project?

That is the good way to show you how to load *.so file.

1 - Add folder jni/libs/*.so

2 - Use "Right-click mouse" -> Android Tools -> Add native support -> Set name of file *.cpp

3 - Two files : *.cpp and Android.mk appeared.

4 - Use Cygwin to build & compile *.so into the project.

Thanks,

Share:
14,677
Neernay
Author by

Neernay

Updated on June 15, 2022

Comments

  • Neernay
    Neernay almost 2 years

    I am trying to create a screen recording app in Android. For this, i am using FFmpeg. I have created the libffmpeg.so file. Now i would like to use the same in Android project for calling it's native function. How can i do that..?