1、安裝步驟如下
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
2腌逢、編譯FFmgeg執(zhí)行./configure 時會報此錯誤。
nasm/yasm not found or too old. Use --disable-x86asm for a crippled build.
yum install -y yasm
再次編譯
./configure --prefix=/usr/local/ffmpeg
make && make install
3、修改vi /etc/ld.so.conf 內(nèi)容如下,執(zhí)行l(wèi)dconfig 是生效醇锚。
include ld.so.conf.d/*.conf
/usr/local/ffmpeg/lib/
4、添加環(huán)境變量 vi /etc/profile 末尾追加如下內(nèi)容
PATH=$PATH:/usr/local/ffmpeg/bin
export PATH
source /etc/profile
5坯临、查看版本
[root@localhost]# ffmpeg -version
ffmpeg version 3.4.1 Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-28)
configuration: --prefix=/usr/local/ffmpeg
libavutil 55. 78.100 / 55. 78.100
libavcodec 57.107.100 / 57.107.100
libavformat 57. 83.100 / 57. 83.100
libavdevice 57. 10.100 / 57. 10.100
libavfilter 6.107.100 / 6.107.100
libswscale 4. 8.100 / 4. 8.100
libswresample 2. 9.100 / 2. 9.100
到此安裝結(jié)束焊唬,如果對你有幫助,請支持下作者看靠,謝謝了赶促。