Xcode5--sdk7.1-----编译ffmpeg

周兴朝
2023-12-01
在Xcode5下,编译ffmpeg连接264库,鼓捣了很久,终于搞定,记录下来;
步骤:
1.首先编译264库
http://www.videolan.org/developers/x264.html ,下载264库,编译
打开终端:输入CC=/Applications/Xcode.app/Contents/Developer/usr/bin/gcc ./configure --host=arm-apple-darwin --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk --extra-cflags='-arch armv7' --extra-ldflags='-arch armv7 -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/usr/lib/system' --enable-pic   --enable-shared --enable-static --disable-asm
编译之后,会提示make,然后输入make
make 之后会运行一堆东西,然后 输入 sudo make install 
如果正常的话,264库就编译好了。
2.编译ffmpeg库
到 https://github.com/lvjian700/ffmpegc ,下载编译库,这里是一个写好的脚本
打开install-ffmpeg.sh修改配置项 添加这两项
 --enable-libx264 --enable-gpl --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib 
--enable-decoder=h264 --enable-encoder=libx264
然后进入目录下运行
  install-ffmpeg.sh
运行方法:./
install-ffmpeg.sh 回车即可。
运行结束后在目录下build里生成ffmpeg库,拷出来即可使用
 类似资料: