Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Contains a script that assembles FFmpeg library for Android

License

NotificationsYou must be signed in to change notification settings

Javernaut/ffmpeg-android-maker

Repository files navigation

Codacy BadgeCompilability checkAndroid Weekly #378Android Weekly #396

Here is a script that downloads the source code ofFFmpeg library and assembles it for Android. The script produces shared libraries (*.so files) as well as header files (*.h files). The output structure is represented in the image.

The script also producesffmpeg andffprobe executables that can be used in Android's terminal directly or can even be embedded into an Android app. They can be found inbuild directory after the successful build.

The main focus of ffmpeg-android-maker is to prepare shared libraries for seamless integration into an Android project. The script prepares theoutput directory that is meant to be used. And it's not the only thing this project does.

By default this script downloads and builds the FFmpeg7.1.2, but the version can be overridden.

The details of how this script is implemented are described in this series of posts:

TheWIKI contains a lot of useful information.

Customization

The actual content ofoutput directory depends on how the FFmpeg was configured before assembling. Themaster branch of ffmpeg-android-maker builds 'vanilla' version of FFmpeg. This means all default components and shared libraries are built (according to the image).

Themedia-file branch contains certain customizations in build scripts of FFmpeg and certain external libraries. These customizations are meant to be an example of how this project can be tuned to obtain the only functionality that is actually needed. What is actually customized can be seenhere.

TheMediaFile Android library uses only a subset of FFmpeg's functionality, so the redundant parts are not even compiled. This gives much smaller output binaries.

Also there are a lot of arguments that you can pass to theffmpeg-android-maker.sh script for tuning certain features. Check thisWIKI page out for more info.

Supported Android ABIs

  • armeabi-v7a (with NEON)
  • arm64-v8a
  • x86
  • x86_64

If you need to build only some of these ABIs, you can do so by specifying aflag.

The default Android API version used to compile these binaries is19, as the minimum supported by the Android NDK r24. However, with NDK r23 it is still possible to have it16. Some external libraries (like libvpx) require to use higher API -21. This is explained at thisWIKI page in more details.

Supported host OS

Regardless of the OS you use, you need to setup it before executing the script. Please follow the instructions inRequirements section.

OnmacOS andLinux the script is supported natively. Just execute it script in the terminal.

OnWindows 10 you can useWSL technology to installUbuntu 20.04 LTS app. Then follow the Linux way of executing the script. Note that you will need to manually install exactly Linux versions of Android SDK and NDK into your Linux subsystem. TheDockerfile may help to understand how to do the setup.

Also onany OS you can useDocker tool to execute the script.Checkthis WIKI page out to understand benefits of this approach.

Requirements

The script assumes you have Android SDK and NDK already installed. In order to tell the script their locations you have to define 2 environment variables:

  • ANDROID_SDK_HOME - absolute path to your Android SDK
  • ANDROID_NDK_HOME - absolute path to your Android NDK

The script expects to useat least Android NDKr23. It doesn't matter if you use other version of NDK for you actual Android project.

Certain external libraries require additional software to be installed. Check thisWIKI page out for more info. Note that if you don't need these external libraries then you also don't need to install the additional software. These external libraries are not built by default.

Features

Add an arbitrary external library that FFMpeg supports to the building process. Just specify how the source code needs to be downloaded and how to perform the build operation. More about this ishere.

Setting your own FFmpeg version and origin. You can actually override the version of FFmpeg used by the script. See detailshere.

Test your script in a cloud. This repository has CI integration and you can use it too for your own configurations. See detailshere.

Text relocations monitoring. After an assembling is finished you can look into stats/text-relocations.txt file. This file lists all *.so files that were built and reports if any of them has text relocations. If you don't see any mentioning of 'TEXTREL' in the file, you are good. Otherwise, you will see exact binaries that have this problem. The Github Actions' Compilability check build will automatically fail if text relocations occur.

License

The ffmpeg-android-maker's source code is available under the MIT license. See theLICENSE.txt file for more details.

However, the binaries that are produced have different license. The FFmpeg itself is underLGPL 2.1. Enabling certain external libraries (like libx264) changes the license to be GPL 2 or later.

About

Contains a script that assembles FFmpeg library for Android

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors6


[8]ページ先頭

©2009-2025 Movatter.jp