Mac下 iOS 和 Android 的FFmpeg 编译

一 iOS 编译

工具:
1.FFmpeg
2.yasm
3.gas-preprocessor.pl
4.编译脚本

一.使用brewhome工具下载并编译

1.检查brew是否安装

brew // 如若出现版本号之类信息则说明已安装

1.2 如果出现找不到命令,则说明没有按钮brew,需要下载安装

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2.安装FFmpeg

brew install ffmpeg

2.1 查看安装的FFmpeg信息

brew info ffmpeg

如果出现 FFmpeg版本号等相关信息则说明安装成功
自定义安装其他库

brew install openssl(库名称)

卸载库

brew uninstall openssl(库名称)

3.下载gas-preprocessor.pl文件,并复制到/usr/local/bin目录下
或者使用命令行

cd 将文件拖进来回车
sudo cp /文件路径/gas-preprocessor.pl /usr/local/bin(目标路径)

4.修改gas-preprocessor.pl文件权限

chmod 777 /usr/sbin/gas-preprocessor.pl

5.下载编译脚本,执行脚本

cd 脚本路径
./build-ffmpeg.sh 
说明编译成功

二 ,自己下载包编译

1.下载文件
gas-preprocessor.pl脚本支持文件 地址
yasm
FFmpeg-iOS-build-script脚本文件
ffmpeg
2.把gas-preprocessor.pl文件复制到 /user/local/bin文件下
3.安装yasm

cd 将文件拖进来回车

./configure && make -j 4 && sudo make install

4.执行脚本

cd 将文件FFmpeg-iOS-build-script-master拖进来回车
./build-ffmpeg.sh 

脚本执行完毕之后出现FFmpeg-iOS文件

四 集成到 iOS 项目

1.把FFmpeg-iOS文件拖到项目中.
2.添加系统依赖库

libz.tbd
libbz2.tbd
libiconv.tbd
AudioToolBox.framework
VidioToolBox.framework

3.添加头文件路径
把编译后的文件拖到项目的时候,一般在 Library Search Paths路径里就包含了.../lib的路径,复制该路径
打开Header Search Paths 粘贴路径,修改libinclude即可


Android 环境下编译

1 . 下载NDK,解压到某个位置
2.在 .bash_profile文件配置 NDK`路径.

3.如果..bash_profile文件不存在
2.输入cd ~/ 进入当前用户的home目录cd /Users/YourUserName
3.touch .bash_profile创建文件
4.保存关闭
5.source .bash_profile更新
6.修改FFmpeg目录下的configure文件

SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'

修改为

SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'  
LIB_INSTALL_EXTRA_CMD='$$(RANLIB)"$(LIBDIR)/$(LIBNAME)"'  
SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'  
SLIB_INSTALL_LINKS='$(SLIBNAME)'

7.编写脚本,脚本文件路径与configure文件相同

#!/bin/bash
# 清空上次的编译
make clean
#你自己的NDK路径。
export NDK=/Users/admin/Downloads/adt-bundle-mac-x86_64/android-ndk-r16b
# 设置你的android平台编译器的版本 这里采用Android4.0
export SYSROOT=$NDK/platforms/android-20/arch-arm/
#编译使用的toolchain
export TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64
export CPU=arm
# 这个是输出的路径
export PREFIX=/Users/admin/Desktop/FFmpeg/ffmpegAndroid
export ADDI_CFLAGS="-marm"
./configure --target-os=linux \
--prefix=$PREFIX --arch=arm \
--disable-everything \
--enable-decoder=h264 \
--enable-decoder=mp3 \
--enable-decoder=aac \
--disable-doc \
--enable-shared \
--disable-static \
--disable-x86asm \
--disable-symver \
--enable-gpl \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--disable-doc \
--disable-symver \
--cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
--enable-cross-compile \
--sysroot=$SYSROOT \
--extra-cflags="-Os -fpic $ADDI_CFLAGS" \
--extra-ldflags="$ADDI_LDFLAGS" \
$ADDITIONAL_CONFIGURE_FLAG
make clean
make
make install

8.执行脚本

./build.sh

编译成功之后 lib 文件夹下面出现.so文件

至此,FFmpeg安卓端编译成功

问题处理

1.出现错误:

xcrun -sdk iphoneos clang is unable to create an executable file.
C compiler test failed.

If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
[[email protected]](mailto:[email protected]) mailing list or IRC #ffmpeg on [irc.freenode.net](http://irc.freenode.net).
Include the log file "config.log" produced by configure as this will help
solve the problem.

解决:

sudo xcode-select --switch /Applications/Xcode.app

参考文章

FFmpeg编译ios平台
FFMpeg下载编译iOS库
FFmpeg 编译iOS真机包,并配置iOS开发环境
iOS集成FFmpeg及视频格式转码
FFmpeg在iOS开发中编译并使用

你可能感兴趣的:(Mac下 iOS 和 Android 的FFmpeg 编译)