ffmpeg安装

2019-03-08  本文已影响0人  阿瑞安赫德

1: 安装 ffmpeg

ffmpeg的下载链接 http://ffmpeg.org/download.html

解压安装包
tar -jxvf ffmpeg-x.x.tar.bz2

进入目录
cd ffmpeg-x.x

编译安装
./configure --enable-shared --prefix-/usr/local/ffmpeg && make && make install

添加软链
cp /usr/local/ffmpeg/bin/ffmpeg /usr/local/bin/ffmpeg

安装完成之后 执行 ffmpeg -version

如果能够出现类似下列信息,说明ffmpeg安装成功。

ffmpeg version 2.5.11 Copyright (c) 2000-2016 the FFmpeg developers
built on Apr 17 2017 16:47:15 with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-11)
configuration: --enable-shared
libavutil      54. 15.100 / 54. 15.100
libavcodec     56. 13.100 / 56. 13.100
libavformat    56. 15.102 / 56. 15.102
libavdevice    56.  3.100 / 56.  3.100
libavfilter     5.  2.103 /  5.  2.103
libswscale      3.  1.101 /  3.  1.101
libswresample   1.  1.100 /  1.  1.100

如果报错 libavdevice.so.57: cannot open shared object file: No such file or directory
执行命令: vim /etc/ld.so.conf.d/ffmpeg.conf 然后添加一行内容: /usr/local/ffmpeg/lib 之后保存并退出,然后执行 ldconfig 使配置生效,现在再次执行 ffmpeg -version 显示就正常了

上一篇下一篇

猜你喜欢

热点阅读