码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS7安装ffmpeg

时间:2019-11-28 18:59:46      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:hyper   pen   foo   enter   except   16px   for   rem   步骤   

首先在官网http://ffmpeg.org/download.html下载ffmpeg-4.2.1.tar.bz2

以下为安装步骤:

  1、使用工具将源码包上传至Linux主机

          技术图片

       2、解压源码包

    进入该文件夹下:cd /usr/ffmpeg/(这里我是安装到usr目录下新建的ffmpeg文件夹中)

            解压该源码包:tar -jxvf ffmpeg-4.2.1.tar.bz2

[bhsoft@localhost ~]$ cd /usr/ffmpeg/
[bhsoft@localhost ffmpeg]$ tar -jxvf ffmpeg-4.2.1.tar.bz2

            技术图片

  3、进入到解压完成的ffmpeg-4.2.1目录下安装yasm(如已安装跳过此步骤)

            安装yasm命令:yum install yasm

[bhsoft@localhost ffmpeg]$ cd ffmpeg-4.2.1/
[bhsoft@localhost ffmpeg-4.2.1]$ yum install yasm

            技术图片

 

 

            中间遇到Is this ok 选择y,如图

           技术图片

 

 

    4、安装yasm完毕后执行命令   

[bhsoft@localhost ffmpeg-4.2.1]$ ./configure --enable-shared --prefix=/usr/ffmpeg

      5、执行make命令(这一步时间比较长,请耐心等待)

[bhsoft@localhost ffmpeg-4.2.1]$ make

      6、执行make install(安装)命令

[bhsoft@localhost ffmpeg-4.2.1]$ make install

      7、修改文件/etc/ld.so.conf

          使用 vim /etc/ld.so.conf命令打开文件

[bhsoft@localhost ffmpeg-4.2.1]$ vim /etc/ld.so.conf

           在文件后面添加 /usr/ffmpeg/lib/

     然后执行ldconfig命令使其生效

[bhsoft@localhost ffmpeg-4.2.1]$ ldconfig

       8、配置环境变量

[bhsoft@localhost ffmpeg-4.2.1]$ vim /etc/profil

          使用 vim /etc/profile命令打开profile文件,在文件末添加环境变量:

#set ffmpeg environment

PATH=$PATH:/usr/ffmpeg/bin

export PATH

           随后执行 source /etc/profile使配置生效  

[bhsoft@localhost ffmpeg-4.2.1]$ source /etc/profile

        9、查看是否配置成功

           用命令ffmpeg -version查看,出现下图信息即安装成功

          技术图片

 

CentOS7安装ffmpeg

标签:hyper   pen   foo   enter   except   16px   for   rem   步骤   

原文地址:https://www.cnblogs.com/wangrong1/p/11951856.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!