How to use libffmpeg.so in Android project?

2020-06-17 06:44发布

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..?

2条回答
smile是对你的礼貌
2楼-- · 2020-06-17 07:13

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

查看更多
姐就是有狂的资本
3楼-- · 2020-06-17 07:30

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,

查看更多
登录 后发表回答