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..?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
This tutorial provides a detail explanation about this topic. How to Build Android Applications Based on FFmpeg by An Example
回答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,