centos 安装 ffmpeg
2022/2/24 7:25:28
本文主要是介绍centos 安装 ffmpeg,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
centos 安装ffmpeg
1 下载ffmpeg 安装包
下载 ffmpeg-4.1.tar.xz
https://johnvansickle.com/ffmpeg/release-source/
2 解压
tar xvJf ffmpeg-4.1.tar.xz
3、安装gcc和yasm编译器
sudo yum install gcc sudo yum install yasm
4、指定安装目录/usr/local/ffmpeg
./configure --enable-shared --prefix=/usr/local/ffmpeg
4.2 如果上步有错误:
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
解决:
①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 #编译安装
5 执行 make (非常久)
make
6 执行 make install (安装)
make install
7.修改文件/etc/ld.so.conf
1 vim /etc/ld.so.conf 1 输入以下内容 include ld.so.conf.d/*.conf /usr/local/ffmpeg/lib/
8.使修改的文件/etc/ld.so.conf生效
ldconfig
9 查看版本
./ffmpeg -version
10、配置环境变量
vim ~/.bashrc export PATH=$PATH:/usr/local/ffmpeg/bin
11、使环境变量生效
source ~/.bashrc
12、查看ffmpeg版本
ffmpeg -version
这篇关于centos 安装 ffmpeg的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15在使用平台私钥进行解密时提示 "私钥解密失败" 错误信息是什么原因?-icode9专业技术文章分享
- 2024-11-15Layui框架有哪些方式引入?-icode9专业技术文章分享
- 2024-11-15Layui框架中有哪些减少对全局环境的污染方法?-icode9专业技术文章分享
- 2024-11-15laydate怎么关闭自动的日期格式校验功能?-icode9专业技术文章分享
- 2024-11-15laydate怎么取消初始日期校验?-icode9专业技术文章分享
- 2024-11-15SendGrid 的邮件发送时,怎么设置回复邮箱?-icode9专业技术文章分享
- 2024-11-15使用 SendGrid API 发送邮件后获取到唯一的请求 ID?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 tags标签最多有多少个?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 怎么批量发送给多个人?-icode9专业技术文章分享
- 2024-11-15如何搭建web开发环境并实现 web项目在浏览器中访问?-icode9专业技术文章分享