FFmpeg官网:
官网介绍
FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation. It is also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure across Linux, Mac OS X, Microsoft Windows, the BSDs, Solaris, etc. under a wide variety of build environments, machine architectures, and configurations.
下载安装
1、下载最新源码包并解压
$ wget http://ffmpeg.org/releases/ffmpeg-4.0.2.tar.bz2$ tar jxvf ffmpeg-4.0.2.tar.bz22、需要先安装yasm
$ yum install yasm3、安装ffmpeg
$ cd ffmpeg-4.0.2$ ./configure$ make$ make install4、安装成功
$ ffmpeg输入ffmpeg打印了相关版本等信息,表示安装成功