CentOS   发布时间:2022-05-09  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了[CentOS_7.4]Linux编译安装ffmpeg大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

安装过程: 下载安装源,配置,编译,安装,设置环境变量。

1
2
3
4
5
6
@H_262_23@ 7
8
9
10
11
12
13
14
15
16
# wget http://www.ffmpeg.org/releases/ffmpeg-3.1.tar.gz
# tar -zxvf ffmpeg-3.1.tar.gz
# cd ffmpeg-3.1
# ./configure --prefix=/usr/local/ffmpeg
# make && make install
等待安装完成...
# vi /etc/profile
在最后PATH添加环境变量:
PATH=$PATH: /usr/local/ffmpeg/bin
export PATH
保存退出
# source /ect/profile 设置生效
# ffmpeg -version 查看版本

  

注意

若@R_629_9382@出现以下错误:

yasm/nasm not found or too old. Use –disable-yasm 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 “config.log” produced by configure as this will Help
solve the problem.

需要安装yasm

5
# wget http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz
# tar -zxvf yasm-1.3.0.tar.gz
# cd yasm-1.3.0
# ./configure
# make && make install

大佬总结

以上是大佬教程为你收集整理的[CentOS_7.4]Linux编译安装ffmpeg全部内容,希望文章能够帮你解决[CentOS_7.4]Linux编译安装ffmpeg所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。