iOS5 的 FFmpeg
Posted
技术标签:
【中文标题】iOS5 的 FFmpeg【英文标题】:FFmpeg for iOS5 【发布时间】:2012-01-09 13:18:55 【问题描述】:有没有人能够使用 ios5 sdk 编译 ffmpeg 库?我找到了使用 4.3 sdk 但没有用于 iOS5 的脚本。我会假设使用旧 sdk 和 armv7 构建的库仍然与 iOS 5 兼容。
这是我尝试使用的命令:
./configure \ --cc=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc \ --as='gas-preprocessor.pl /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc' \ --sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk \ --extra-ldflags=-L/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/usr/lib/system \ --target-os=darwin \ --arch=arm \ --cpu=cortex-a8 \ --extra-cflags='-arch armv7' \ --extra-ldflags='-arch armv7' \ --prefix=compiled/armv7 \ --enable-pic \ --enable-cross-compile \ --disable-armv5te \ --disable-ffmpeg \ --disable-ffplay \ --disable-ffserver \ --disable-ffprobe \ --disable-doc
我也尝试过使用这样的脚本:
#!/bin/tcsh -f
if (! -d armv7) mkdir armv7
if (! -d lib) mkdir lib
rm armv7/*.a
make clean
./configure --disable-doc --disable-ffmpeg --disable-ffplay --disable-ffserver --enable-cross-compile --arch=arm --target-os=darwin --cc=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc --as='gas-preprocessor/gas-preprocessor.pl /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc' --sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk --cpu=cortex-a8 --extra-cflags='-arch armv7' --extra-ldflags='-arch armv7' --enable-pic
make
mv libavcodec/libavcodec.a armv7/
mv libavdevice/libavdevice.a armv7/
mv libavformat/libavformat.a armv7/
mv libavutil/libavutil.a armv7/
mv libswscale/libswscale.a armv7/
rm lib/*.a
cp armv7/*.a lib/
我也尝试切换到 gcc-4.2 以及 llvm-gcc-4.2。但是,我在 cmets 中收到如下所示的“未知选项”错误。
任何信息都会很好,谢谢。
【问题讨论】:
它应该编译得非常好 AFAIK。您在使用 iOS 5 工具链进行编译时是否看到任何特定错误? 未知选项“--cc=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc”。 gcc 编译器看起来就在那里。有什么建议吗? 没错,您需要使用llvm-gcc
或clang
而不是gcc
。您是否了解如何做到这一点,或者您是否正在尝试使用脚本或类似的东西来编译它?
我尝试过使用脚本并从终端运行命令
究竟是什么脚本?我可以尝试为您修复它 - 我已经为 ios 编译 ffmpeg 有一段时间了,所以应该能够解决它!
【参考方案1】:
更新:完全改变了使用我使用的脚本的答案。
您还需要从https://github.com/yuvi/gas-preprocessor
下载gas-preprocessor.pl
,将其放入您的路径并使其可执行。
然后创建一个脚本(比如make_for_iphone.sh
)并将其放入其中:
export PLATFORM="iPhoneOS"
export MIN_VERSION="4.0"
export MAX_VERSION="5.0"
export DEVROOT=/Developer/Platforms/$PLATFORM.platform/Developer
export SDKROOT=$DEVROOT/SDKs/$PLATFORM$MAX_VERSION.sdk
export CC=$DEVROOT/usr/bin/llvm-gcc
export LD=$DEVROOT/usr/bin/ld
export CPP=$DEVROOT/usr/bin/cpp
export CXX=$DEVROOT/usr/bin/llvm-g++
export AR=$DEVROOT/usr/bin/ar
export LIBTOOL=$DEVROOT/usr/bin/libtool
export NM=$DEVROOT/usr/bin/nm
export CXXCPP=$DEVROOT/usr/bin/cpp
export RANLIB=$DEVROOT/usr/bin/ranlib
COMMONFLAGS="-pipe -gdwarf-2 -no-cpp-precomp -isysroot $SDKROOT -marm -fPIC"
export LDFLAGS="$COMMONFLAGS -fPIC"
export CFLAGS="$COMMONFLAGS -fvisibility=hidden"
export CXXFLAGS="$COMMONFLAGS -fvisibility=hidden -fvisibility-inlines-hidden"
FFMPEG_LIBS="libavcodec libavdevice libavformat libavutil libswscale"
echo "Building armv6..."
make clean
./configure \
--cpu=arm1176jzf-s \
--extra-cflags='-arch armv6 -miphoneos-version-min=$MIN_VERSION -mthumb' \
--extra-ldflags='-arch armv6 -miphoneos-version-min=$MIN_VERSION' \
--enable-cross-compile \
--arch=arm \
--target-os=darwin \
--cc=$CC \
--sysroot=$SDKROOT \
--prefix=installed \
--disable-network \
--disable-decoders \
--disable-muxers \
--disable-demuxers \
--disable-devices \
--disable-parsers \
--disable-encoders \
--disable-protocols \
--disable-filters \
--disable-bsfs \
--enable-decoder=h264 \
--enable-decoder=svq3 \
--enable-gpl \
--enable-pic \
--disable-doc
perl -pi -e 's/HAVE_INLINE_ASM 1/HAVE_INLINE_ASM 0/' config.h
make -j3
mkdir -p build.armv6
for i in $FFMPEG_LIBS; do cp ./$i/$i.a ./build.armv6/; done
echo "Building armv7..."
make clean
./configure \
--cpu=cortex-a8 \
--extra-cflags='-arch armv7 -miphoneos-version-min=$MIN_VERSION -mthumb' \
--extra-ldflags='-arch armv7 -miphoneos-version-min=$MIN_VERSION' \
--enable-cross-compile \
--arch=arm \
--target-os=darwin \
--cc=$CC \
--sysroot=$SDKROOT \
--prefix=installed \
--disable-network \
--disable-decoders \
--disable-muxers \
--disable-demuxers \
--disable-devices \
--disable-parsers \
--disable-encoders \
--disable-protocols \
--disable-filters \
--disable-bsfs \
--enable-decoder=h264 \
--enable-decoder=svq3 \
--enable-gpl \
--enable-pic \
--disable-doc
perl -pi -e 's/HAVE_INLINE_ASM 1/HAVE_INLINE_ASM 0/' config.h
make -j3
mkdir -p build.armv7
for i in $FFMPEG_LIBS; do cp ./$i/$i.a ./build.armv7/; done
mkdir -p build.universal
for i in $FFMPEG_LIBS; do lipo -create ./build.armv7/$i.a ./build.armv6/$i.a -output ./build.universal/$i.a; done
for i in $FFMPEG_LIBS; do cp ./build.universal/$i.a ./$i/$i.a; done
make install
这会编译 armv6 和 armv7 版本,并使用 lipo
将它们放入胖库中。它会安装到您运行脚本的文件夹下面,名为installed
。
请注意,目前我必须使用 perl
内联替换关闭内联汇编,以将 HAVE_INLINE_ASM
从 1
更改为 0
。这是因为gas-preprocessor.pl
- https://github.com/yuvi/gas-preprocessor/issues/16 的这个问题。
另请注意,这已关闭除 H264 解码器之外的所有编码器、解码器、复用器、解复用器等。只需更改配置行即可为您的用例编译您想要的内容。
还请记住,这已启用 GPL 代码 - 因此您应该了解这对 iPhone 应用程序意味着什么。如果您不知道,那么您应该阅读相关内容。
【讨论】:
错误:未知选项“--cc=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-gcc”。 当我运行脚本时,我得到:make: *** No rule to make target `clean'。停止。 ./configure:找不到命令。 make: *** 没有指定目标,也没有找到 makefile。停止。 Matt,我已经使用你的脚本编译了 ffmpeg,效果很好。但是,当将 .a 文件拖入 Xcode 并编译时,我得到“架构 armv7 的未定义符号:“_avcodec_init”,引用自:....'有什么想法吗? 听起来好像没有 armv7 部分。编译时有错误吗? 不需要启用文件协议吗?【参考方案2】:这是我在 iOS 6 上交叉编译 FFmpeg
的工作配置,拱门是 ARMv7
注意:您必须在 /usr/local/bin/
中包含 gas-preprocessor.pl,请在您的 bin 目录中有 gas-preprocessor.pl 之前不要继续操作
从here下载FFmpeg 1.0“天使”
解压缩并将其放在某个位置,即您的Desktop
文件夹
打开终端并浏览到unzipped FFmpeg folder
复制并粘贴以下命令,(请耐心等待)
./configure --disable-doc --disable-ffmpeg --disable-ffplay --disable-ffserver --enable-cross-compile --arch=arm --target-os=darwin --cc=/ Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc --as='gas-preprocessor/gas-preprocessor.pl /Applications/Xcode.app/Contents/Developer/Platforms/ iPhoneOS.platform/Developer/usr/bin/gcc' --sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk --cpu=cortex-a8 - -extra-cflags='-arch armv7' --extra-ldflags='-arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' - -enable-pic --enable-decoder=rawvideo --disable-asm
现在在终端 make
上输入以下命令(再等一下)
一旦完成,现在在终端输入sudo make install
(再次等待)
转到/usr/local/lib
找到您刚出炉的armv7
库
享受吧!
亚历克斯
【讨论】:
谢谢!像魅力一样工作。我只需要在运行 ./configure 之前安装 pkg-config。【参考方案3】:我在https://github.com/ciphor/ffmpeg4ios 创建了一个“ffmpeg4ios”项目,它在iOS 5.0 上成功编译。 你可以检查一下。
【讨论】:
以上是关于iOS5 的 FFmpeg的主要内容,如果未能解决你的问题,请参考以下文章
FFmpegffmpeg推流+播放器命令总结,常用16条汇总