概述
1.执行 ./configure --prefix=/usr/local/ffmpeg --enable-shared --enable-static
其中 --prefix=/usr/local/ffmpeg 指定了ffmpeg编译后的安装目录
--enable-shared 编译动态库
--enable-static 编译静态库
报错:
nasm/yasm not found or too old. Use --disable-x86asm for a crippled build.
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
ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "ffbuild/config.log" produced by configure as this will help
solve the problem.
解决:
sudo apt-get install yasm
2.再次执行configure后,执行make -j16 进行编译
3.执行make install进行安装
4.安装后windows下编译正常运行的demo,移植到ubuntu,调用ffmpeg报错
cannot find -lpostproc, 暂时去掉-lpostproc链接
5.avcodec_find_decoder 报错
参考
https://blog.csdn.net/lanlanlan12345/article/details/50952554
按照参考未能解决问题
后经查证,windows引用了老版本ffmpeg库及头文件,移植到linux上后,头文件仍然引用原老版本,但库为最新版本,头文件跟库替换成最新版本后编译运行成功。
最后
以上就是酷炫热狗为你收集整理的FFMPEG编译及遇到的问题的全部内容,希望文章能够帮你解决FFMPEG编译及遇到的问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复