概要
FFmpeg官网有编译好的二进制,下载过来直接可以使用,但是面临一些定制特性,就束手无策了,于是乎,我们还是学习下如何使用NDK编译源代码。
本文所用版本:
FFmpeg:
版本:ffmpeg-5.1.4
官网:https://ffmpeg.org/download.html#releases
Linux:
版本:ubuntu 22
NDK
版本:r21e
官网:https://github.com/android/ndk/wiki/Unsupported-Downloads
编译步骤
- 下载安装NDK
- 下载FFmpeg源代码
- 编写编译脚本
- 拷贝生成的so和头文件
- android studio进行使用(这部分看情况待续...)
NDK
下载:
进入 https://github.com/android/ndk/wiki/Unsupported-Downloads下载Linux版本即可:
安装:
- 解压之后目录如下:
- 生成交叉编译工具链:
进入build/tools目录,并执行生成脚本;
cd build/tools
./make-standalone-toolchain.sh --toolchain=arm-linux-androideabi-4.9 --platform=android-19 --install-dir=../../../ndk21
生成交叉编译工具链如下:
- 交叉编译工具链添加到环境变量:
执行命令:
vim /etc/profile
在文件最后添加
export ANDROID_NDK=/home/ricky/workspace/tools/ndk21
export PATH=$ANDROID_NDK:$PATH
使环境变量立马生效:
source /etc/profile
验证是否生效,执行命令:
echo $ANDROID_NDK
如果显示路径就成功了,比如:
/home/ricky/workspace/tools/ndk21
FFmpeg
官网简介:
技术性官网,非常简介直接,没半点废话,上来就是我们最常用的下载按钮:
我们点击进入“MoreRelease”,也就是:
https://ffmpeg.org/download.html#releases
下载ffmpeg-5.1.4
编写编译脚本
#!/bin/bash
PREFIX=/home/ricky/workspace/ffmpeg/build
NDK_HOME=${ANDROID_NDK}
echo "NDK_HOME=${NDK_HOME}"
COMMON_OPTIONS="\
--target-os=android \
--disable-static \
--enable-shared \
--enable-small \
--disable-programs \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--disable-doc \
--disable-symver \
--disable-asm \
"
function build_android {
./configure \
--libdir=${PREFIX}/libs/armeabi-v7a \
--incdir=${PREFIX}/includes/armeabi-v7a \
--pkgconfigdir=${PREFIX}/pkgconfig/armeabi-v7a \
--arch=arm \
--cpu=armv7-a \
--cross-prefix="${NDK_HOME}/bin/arm-linux-androideabi-" \
--sysroot="${NDK_HOME}/sysroot/" \
--extra-ldexeflags=-pie \
${COMMON_OPTIONS}
make clean
make -j8 && make install
}
build_android
脚本拷贝到FFmpeg源代码解压后的根目录,并执行:
./build_android.sh
执行完成之后,在脚本的PREFIX=/home/ricky/workspace/ffmpeg/build即可看到如下结果:
ricky@ricky-pc:~/workspace/ffmpeg/build$ tree -L 4
.
├── includes
│ └── armeabi-v7a
│ ├── libavcodec
│ │ ├── ac3_parser.h
│ │ ├── adts_parser.h
│ │ ├── avcodec.h
│ │ ├── avdct.h
│ │ ├── avfft.h
│ │ ├── bsf.h
│ │ ├── codec_desc.h
│ │ ├── codec.h
│ │ ├── codec_id.h
│ │ ├── codec_par.h
│ │ ├── d3d11va.h
│ │ ├── defs.h
│ │ ├── dirac.h
│ │ ├── dv_profile.h
│ │ ├── dxva2.h
│ │ ├── jni.h
│ │ ├── mediacodec.h
│ │ ├── packet.h
│ │ ├── qsv.h
│ │ ├── vdpau.h
│ │ ├── version.h
│ │ ├── version_major.h
│ │ ├── videotoolbox.h
│ │ ├── vorbis_parser.h
│ │ └── xvmc.h
│ ├── libavdevice
│ │ ├── avdevice.h
│ │ ├── version.h
│ │ └── version_major.h
│ ├── libavfilter
│ │ ├── avfilter.h
│ │ ├── buffersink.h
│ │ ├── buffersrc.h
│ │ ├── version.h
│ │ └── version_major.h
│ ├── libavformat
│ │ ├── avformat.h
│ │ ├── avio.h
│ │ ├── version.h
│ │ └── version_major.h
│ ├── libavutil
│ │ ├── adler32.h
│ │ ├── aes_ctr.h
│ │ ├── aes.h
│ │ ├── attributes.h
│ │ ├── audio_fifo.h
│ │ ├── avassert.h
│ │ ├── avconfig.h
│ │ ├── avstring.h
│ │ ├── avutil.h
│ │ ├── base64.h
│ │ ├── blowfish.h
│ │ ├── bprint.h
│ │ ├── bswap.h
│ │ ├── buffer.h
│ │ ├── camellia.h
│ │ ├── cast5.h
│ │ ├── channel_layout.h
│ │ ├── common.h
│ │ ├── cpu.h
│ │ ├── crc.h
│ │ ├── csp.h
│ │ ├── des.h
│ │ ├── detection_bbox.h
│ │ ├── dict.h
│ │ ├── display.h
│ │ ├── dovi_meta.h
│ │ ├── downmix_info.h
│ │ ├── encryption_info.h
│ │ ├── error.h
│ │ ├── eval.h
│ │ ├── ffversion.h
│ │ ├── fifo.h
│ │ ├── file.h
│ │ ├── film_grain_params.h
│ │ ├── frame.h
│ │ ├── hash.h
│ │ ├── hdr_dynamic_metadata.h
│ │ ├── hdr_dynamic_vivid_metadata.h
│ │ ├── hmac.h
│ │ ├── hwcontext_cuda.h
│ │ ├── hwcontext_d3d11va.h
│ │ ├── hwcontext_drm.h
│ │ ├── hwcontext_dxva2.h
│ │ ├── hwcontext.h
│ │ ├── hwcontext_mediacodec.h
│ │ ├── hwcontext_opencl.h
│ │ ├── hwcontext_qsv.h
│ │ ├── hwcontext_vaapi.h
│ │ ├── hwcontext_vdpau.h
│ │ ├── hwcontext_videotoolbox.h
│ │ ├── hwcontext_vulkan.h
│ │ ├── imgutils.h
│ │ ├── intfloat.h
│ │ ├── intreadwrite.h
│ │ ├── lfg.h
│ │ ├── log.h
│ │ ├── lzo.h
│ │ ├── macros.h
│ │ ├── mastering_display_metadata.h
│ │ ├── mathematics.h
│ │ ├── md5.h
│ │ ├── mem.h
│ │ ├── motion_vector.h
│ │ ├── murmur3.h
│ │ ├── opt.h
│ │ ├── parseutils.h
│ │ ├── pixdesc.h
│ │ ├── pixelutils.h
│ │ ├── pixfmt.h
│ │ ├── random_seed.h
│ │ ├── rational.h
│ │ ├── rc4.h
│ │ ├── replaygain.h
│ │ ├── ripemd.h
│ │ ├── samplefmt.h
│ │ ├── sha512.h
│ │ ├── sha.h
│ │ ├── spherical.h
│ │ ├── stereo3d.h
│ │ ├── tea.h
│ │ ├── threadmessage.h
│ │ ├── timecode.h
│ │ ├── time.h
│ │ ├── timestamp.h
│ │ ├── tree.h
│ │ ├── twofish.h
│ │ ├── tx.h
│ │ ├── uuid.h
│ │ ├── version.h
│ │ ├── video_enc_params.h
│ │ └── xtea.h
│ ├── libswresample
│ │ ├── swresample.h
│ │ ├── version.h
│ │ └── version_major.h
│ └── libswscale
│ ├── swscale.h
│ ├── version.h
│ └── version_major.h
├── libs
│ └── armeabi-v7a
│ ├── libavcodec.so
│ ├── libavdevice.so
│ ├── libavfilter.so
│ ├── libavformat.so
│ ├── libavutil.so
│ ├── libswresample.so
│ └── libswscale.so
└── pkgconfig
└── armeabi-v7a
├── libavcodec.pc
├── libavdevice.pc
├── libavfilter.pc
├── libavformat.pc
├── libavutil.pc
├── libswresample.pc
└── libswscale.pc
16 directories, 148 files
ricky@ricky-pc:~/workspace/ffmpeg/build$
pkgconfig这种方式其实android并没有使用,可以不拷贝,我编译的是armv7-a版本,新手机可以编译armv8-a,64位高性能
集成到Android Studio工程即可
这个大家应该都会了吧,有同学不会的,我后面可以抽空补充