Android ffmpeg.so download

Does anyone know where to get the compiled .so FFMPEG library for Android?

I tried to compile FFMPEG manually on windows-7 a thousand times using Android NDK, but it failed.

Therefore, I believe that it is better to use precompiled lib, since I already use the same technology that was used in: https://github.com/guardianproject/SSCVideoProto

But ffmpeg lib in this project is very old.

Any help is much appreciated .......

+6
source share
3 answers

It was created for ffmpeg 2.0 because it is integrated with android-ndk-r9b Download the prebuilt *.so .

set up *.so file :

1 - Add the jni / libs / * folder. so

2 - Use "Right-click" → Android Tools → Add Built-in Support → Set File Name * .cpp

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

4 - Use Cygwin to build and compile * .so into a project.

How to load another .so file in your android project? .

Command

@Sanket Excute should know this first before passing parameters to the C ++ method:

C ++ method call in C ++ file from Java file

+7
source

You can extract libffmepg.so from the Dolphin Player assembly

https://code.google.com/p/dolphin-player/downloads/list

Rename the package extension to .zip and extract the .so libraries from the lib folder.

+3
source

I offer you two ways:

# 1: you can upload a project on this blog , it works great, start adding your code to this project.

# 2: you can build it yourself. The easiest way is to build on Linux. You can select any of the Android versions for here . After extracting, you will find the README.txt file. The steps described here are pretty straightforward. Follow them, you will get the assembly, I believe.

+2
source

Source: https://habr.com/ru/post/916913/


All Articles