13

警告:

另一位用户刚刚告知我,在 iOS 上使用 FFMPEG 存在一些法律问题,将链接留在这里http://multinc.com/2009/08/24/compatibility-between-the-iphone-app-store-和-lgpl/

我稍微整理了一下我的问题,当我第一次写它时,我很慌张。现在我可以在稍作休息后更清楚。

编辑:了解到您必须为 ARMv7、ARMv7s 和 iOS6.0 构建

我正在尝试在 XCode 4.5.1 项目中使用 FFMPEG 库。我正在尝试为 ARMv7 构建它。我正在寻找的是确切的过程和一些解释。我知道这不是一个有据可查的问题。但我知道其他人也有和我一样的问题。

我已经能够做到的。

我已经能够构建用于测试的库。

1)我已经能够克隆ffmpeg。对于初学者,这将通过使用 ffmpeg 源创建目录来帮助您入门。(向写这篇文章的人致敬)

git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg

2)我已经能够编写一个没有任何错误的配置文件。我们稍后会回到这部分。这是我附加到 ./configure 的命令

./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/llvm-gcc-4.2/bin/arm-apple-darwin10-llvm-gcc-4.2

--as='gas-preprocessor/gas-preprocessor.pl /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/bin/arm-apple-darwin10-llvm -gcc-4.2'

--sysroot=/applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk

--cpu=cortex-a8 --extra-ldflags='-arch=armv7 -isysroot /applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' --enable -pic --disable-bzlib --disable-gpl --disable-shared --enable-static --disable-mmx --disable-debug --disable-neon --extra-cflags='-pipe -Os -gdwarf -2 -isysroot /applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk -m${thumb_opt:-no-thumb} -mthumb-interwork'

这些是需要注意的一些事项。

  • 我必须下载(https://github.com/yuvi/gas-preprocessor)将文件 gas-preprocessor.pl 复制到 /usr/local/bin。设置读写权限 (777)
  • 确保我使用的是正确的 GCC 编译器:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/bin/arm-apple-darwin10-llvm-gcc- 4.2
  • 确保我使用的是正确的 SDK:/applications/xcode.app/contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk
  • --extra-cflags="-arch armv7" 原因:错误:无法识别的命令行选项“-arch”</li>

问题就在这里。

我可以像这样包含图书馆

libavcodec/avcodec.h

但是当我开始编写编码器时。我收到了这个警告,还有无数错误。

忽略文件/Users/Jimmy/Development/source.ffmpeg/Library/libavutil.a,文件是为存档而构建的,它不是被链接的架构(armv7s):/Users/Jimmy/Development/source.ffmpeg/Library/libavutil。一个

这意味着我没有构建正确的二进制文件。

我正在寻找的是一个以前做过的人,带领我们所有人完成为 iOS6.0 和 ARMv7 构建 FFMPEG 的过程以及大部分需要注意的事情。万分感谢。

4

1 回答 1

12

这是我在 iOS 6 上进行交叉编译的工作配置,FFmpeg拱门是ARMv7

注意:你必须有gas-preprocessor.pl在你的 bin 目录中有gas-preprocessor.pl/usr/local/bin/之前请不要继续

  • 从这里下载 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

  • 享受!

亚历克斯


添加了对 armv7s 的支持

这个 armv7s 配置完全未经测试,我真的不知道这是否可行,我没有 iPhone 5,所以我们需要有人来测试最终的 armv7s 库

./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 armv7s' --extra-ldflags='-arch armv7s -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk' --enable- pic --enable-decoder=rawvideo --disable-asm

于 2012-10-26T04:16:51.263 回答