1.升级系统
sudo yum install epel-release -y
sudo yum update -y
2.安装Nux Dextop Yum 源
由于CentOS没有官方FFmpeg rpm软件包。但是,我们可以使用第三方YUM源(Nux Dextop)完成此工作。
CentOS 7
sudo rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
3.安装FFmpeg 和 FFmpeg开发包
sudo yum install ffmpeg ffmpeg-devel -y
4.测试是否安装成功
ffmpeg --version
5. 配置ffmpeg
如果ffmpeg无法运行,可能terminal无法寻找到执行文件
在.bashrc里面设置
ffmpeg = '/usr/local/ffmpeg'
$ source .bashrc
测试 $ffmpeg --version
测试成功结果(注意gcc版本)
built with gcc 4.8.5 (GCC) 20150623 (Red Hat 4.8.5-28)
configuration: --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg --incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man --arch=x86_64 --optflags='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic' --extra-ldflags='-Wl,-z,relro ' --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-version3 --enable-bzlib --disable-crystalhd --enable-gnutls --enable-ladspa --enable-libass --enable-libcdio --enable-libdc1394 --disable-indev=jack --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable-openal --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libv4l2 --enable-libx264 --enable-libx265 --enable-libxvid --enable-x11grab --enable-avfilter --enable-avresample --enable-postproc --enable-pthreads --disable-static --enable-shared --enable-gpl --disable-debug --disable-stripping --shlibdir=/usr/lib64 --enable-runtime-cpudetect
libavutil 54. 31.100 / 54. 31.100
libavcodec 56. 60.100 / 56. 60.100
libavformat 56. 40.101 / 56. 40.101
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 40.101 / 5. 40.101
libavresample 2. 1. 0 / 2. 1. 0
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.101 / 1. 2.101
libpostproc 53. 3.100 / 53. 3.100
6. 使用ffmpeg制作视频
将tmp文件夹中的tmp00000.jpeg至tmp00###.jpeg格式的系列图片合成视频 aia_hq.mp4
ffmpeg -f image2 -r 24 -i tmp/tmp%05d.jpeg -s900x900 -vcodec libx264 aia_hq.mp4
注意:libx264编码的视频质量更高。
7. 可能遇到问题共享lib
比如: Requires: libass.so.5()(64bit)
在下列库中寻找:
https://centos.pkgs.org/7/epel-x86_64/
http://www.rpmfind.net/linux/rpm2html/search.php?query=libass.so.5()(64bit)
下载 lib64ass5-0.13.4-1.mga5.x86_64.rpm
wget ftp://195.220.108.108/linux/mageia/distrib/5/x86_64/media/core/updates/lib64ass5-0.13.4-1.mga5.x86_64.rpm
sudo rpm -ivh lib64ass5-0.13.4-1.mga5.x86_64.rpm
sudo yum install -y ffmpeg
后学细节:https://blog.csdn.net/firstime_tzjz/article/details/7427440
网友评论