关于ios中编译ffmpeg0.9.2库
很多朋友在问如何在ios中编译ffmpeg库,虽说网上的教程很多,但是大部分都说按其操作,最后编译总是不成功,正好我最近的项目要用到ffmpeg,所以就再次编译了,同时在这里记下,方便需要参考的朋友。
先说一下本次编译的环境:
mac os x 10.7.4
xcode4.2.1
ios5.0
ffmpeg0.9.2(最新的为0.10.3,一般不喜欢用最新的,原因不说了,所以这里选择次新的,^_^,有兴趣的朋友可以自己去测试最新的版本)
下面直接上步骤:
1:https://github.com/yuvi/gas-preprocessor下载gas-preprocessor.pl文件并将其放置到/usr/sbin路径下,然后对其赋予权限,如下所示:
1. cd /usr/sbin
2. chmod 777 gas-preprocessor.pl
2:到ffmpeg的官网http://ffmpeg.org/download.html下载所需要版本代码,这里选择ffmpeg0.9.2,解压之后会得到一个ffmpeg-0.9.2的文件夹。
3:从终端进入到加压出来的ffmpeg-0.9.2文件夹,并执行make clean命令,清除上次生成的库文件。
4:编译配置(分为模拟器和真机两个版本)
4.1:模拟器版本编译配置,在终端执行如下命令:
1. ./configure --disable-doc --disable-ffmpeg --disable-ffplay --disable-ffserver --disable-avfilter --disable-debug --disable-encoders --enable-cross-compile --disable-decoders --disable-armv5te --enable-decoder=h264 --enable-pic --cc=/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc --as='gas-preprocessor/gas-preprocessor.pl /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc' --extra-ldflags=-L/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk/usr/lib/system --sysroot=/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk --target-os=darwin --arch=i386 --cpu=i386 --extra-cflags='-arch i386' --extra-ldflags='-arch i386' --disable-asm
4.2:真机版本编译配置,在终端执行如下命令:
1. ./configure --disable-doc --disable-ffmpeg --disable-ffplay --disable-ffserver --disable-avfilter --disable-debug --disable-decoders --enable-cross-compile --disable-encoders --disable-armv5te --enable-decoder=h264 --enable-pic --cc=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc --as='gas-preprocessor/gas-preprocessor.pl /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc' --extra-ldflags='-arch armv7 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk' --sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk --target-os=darwin --arch=arm --cpu=cortex-a8 --extra-cflags='-arch armv7' --disable-asm
注意:需要将其中的sdk路径更换为自己环境所对应的sdk路径,注意命令中的空格。
配置成功之后将出现如下画面,如果没有成功,则仔细检查命令是否正确:
1. Enabled filters:
2. abuffer earwax pad
3. abuffersink fade pan
4. aconvert fieldorder pixdesctest
5. aevalsrc fifo rgbtestsrc
6. aformat format scale
7. amovie gradfun select
8. anull hflip setdar
9. anullsink life setpts
10. anullsrc lut setsar
11. aresample lutrgb settb
12. ashowinfo lutyuv showinfo
13. buffer mandelbrot slicify
14. buffersink movie split
15. cellauto negate testsrc
16. color noformat transpose
17. copy null unsharp
18. crop nullsink vflip
19. deshake nullsrc volume
20. drawbox overlay
21.
22. Enabled bsfs:
23. aac_adtstoasc mjpeg2jpeg noise
24. chomp mjpega_dump_header remove_extradata
25. dump_extradata mov2textsub text2movsub
26. h264_mp4toannexb mp3_header_compress
27. imx_dump_header mp3_header_decompress
28.
29. Enabled indevs:
30.
31. Enabled outdevs:
32.
33. License: LGPL version 2.1 or later
34. Creating config.mak and config.h...
35.
36. WARNING: pkg-config not found, library detection may fail.
37. WARNING: Compiler does not indicate floating-point ABI, guessing soft.
38. Yarin-YangmatoiMac:ffmpeg-0.9.2 yarin$
5:编译,最简单了,在终端执行make命令即可,如果出现以下画面,则表示编译成功:
1. libavutil/opt.c: In function ‘av_opt_ptr’:
2. libavutil/opt.c:811: warning: initialization discards qualifiers from pointer target type
3. CC libavutil/parseutils.o
4. CC libavutil/pixdesc.o
5. CC libavutil/random_seed.o
6. CC libavutil/rational.o
7. CC libavutil/rc4.o
8. CC libavutil/samplefmt.o
9. CC libavutil/sha.o
10. CC libavutil/tree.o
11. CC libavutil/utils.o
12. AR libavutil/libavutil.a
13. CC ffprobe.o
14. ffprobe.c: In function ‘probe_file’:
15. ffprobe.c:1163: warning: ‘av_close_input_file’ is deprecated (declared at libavformat/avformat.h:1652)
16. CC cmdutils.o
17. LD ffprobe_g
18. CP ffprobe
19. STRIP ffprobe
20. Yarin-YangmatoiMac:ffmpeg-0.9.2 yarin$
上面的代码本人亲测,能编译通过,如果不能编译成功的请仔细检查每一步是否操作正确,同时在文末我提供了一个我编译的真机版本的控制台输出信息,大家可以核对。
另外,很多朋友都在使用iFrameExtractor项目(git clone git://github.com/lajos/iFrameExtractor.git)作为测试,如果你选择的ffmpeg版本在0.8.5及其以上,那么需要将VideoFrameExtractor.m中72行的codec_type值改为AVMEDIA_TYPE_VIDEO,如下所示:
1. // Find the first video stream
2. videoStream=-1;
3. for(int i=0; i<pFormatCtx->nb_streams; i++)
4. if(pFormatCtx->streams[i]->codec->codec_type==AVMEDIA_TYPE_VIDEO)
5. {
6.
补充:移动开发 , 其他 ,