CentOS 6.x 平台安装配置ffmpeg

前端之家收集整理的这篇文章主要介绍了CentOS 6.x 平台安装配置ffmpeg前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、介绍

FFmpeg 是Fast Forward Mpeg的简写,是一套可以用来记录、转换数字音频、视频,并能将其转化为流的开源计算机程序。采用LGPL或GPL许可证。它提供了录制、转换以及流化音视频的完整解决方案。它包含了非常先进的音频/视频编解码库libavcodec,为了保证高可移植性和编解码质量,libavcodec里很多code都是从头开发的。

FFmpeg在Linux平台下开发,但它同样也可以在其它操作系统环境中编译运行,包括Windows、Mac OS X等。这个项目最早由Fabrice Bellard发起,2004年至2015年间由Michael Niedermayer主要负责维护。许多FFmpeg的开发人员都来自MPlayer项目,而且当前FFmpeg也是放在MPlayer项目组的服务器上。项目的名称来自MPEG视频编码标准,前面的"FF"代表"Fast Forward"。 ---摘自百度

二、安装

ffmpeg要实现的功能:对短视频进行转码、打水印、去除logo等

1、安装yasm
yasm是x86平台的一个汇编优化器,可以加快ffmpegx264的编译
下载地址:http://yasm.tortall.net/releases/Release1.3.0.html
#tarxfyasm-1.3.0.tar.gz
#cdyasm-1.3.0
#./configure
#make&&makeinstall

2、安装依赖包
#yuminstalllibart_lgpllibass-develfreetype-developus-devellibvorbis-devellibvpx-devel-y

3、安装x264
H.264是ITU(InternationalTelecommunicationUnion,国际通信联盟)和MPEG(MotionPictureExpertsGroup,运动图像专家组)
联合制定的视频编码标准。而x264是一个开源的H.264/MPEG-4AVC视频编码函数库[1],是最好的有损视频编码器

#wgethttp://download.videolan.org/x264/snapshots/last_stable_x264.tar.bz2
#tarxvflast_stable_x264.tar.bz2
#cdx264-snapshot-20171114-2245-stable/
#./configure--enable-shared
#make&&makeinstall

执行完makeinstall之后的输出
install-d/usr/local/bin
installx264/usr/local/bin
install-d/usr/local/include
install-d/usr/local/lib
install-d/usr/local/lib/pkgconfig
install-m644./x264.h/usr/local/include
install-m644x264_config.h/usr/local/include
install-m644x264.pc/usr/local/lib/pkgconfig
ln-f-slibx264.so.148/usr/local/lib/libx264.so
install-m755libx264.so.148/usr/local/lib

4、安装x265
x265是一个用于编码符合高效率视频编码(HEVC/H.265)标准的视频的开源自由软件及函数库。x265与x264项目类似
x265使用GNU通用公共许可证(GPL)2授权或商业许可证授权提供

下载地址:http://ftp.videolan.org/pub/videolan/x265/
#tarxfx265_2.5.tar.gz
#cdx265_2.5/build/linux
#bashmake-Makefiles.bash#等出现提示界面,输入g退出
#make#执行完成之后,库便在当前目录下生成了
#ll
total10288
drwxr-xr-x.2rootroot4096Nov1610:59cmake
-rw-r--r--.1rootroot16987Nov1610:58CMakeCache.txt
drwxr-xr-x.9rootroot4096Nov1611:01CMakeFiles
-rw-r--r--.1rootroot4747Nov1610:58cmake_install.cmake
drwxr-xr-x.3rootroot4096Nov1610:59common
drwxr-xr-x.3rootroot4096Nov1610:59encoder
-rw-r--r--.1rootroot5523420Nov1611:01libx265.a
lrwxrwxrwx.1rootroot14Nov1611:01libx265.so->libx265.so.130
-rwxr-xr-x.1rootroot4820615Nov1611:01libx265.so.130
-rw-r--r--.1rootroot14807Nov1610:59Makefile
-rwxr-xr-x.1rootroot110Jul1319:20make-Makefiles.bash
-rwxr-xr-x.1rootroot982Jul1319:20multilib.sh
-rwxr-xr-x.1rootroot102954Nov1611:01x265
-rw-r--r--.1rootroot1426Nov1610:58x265_config.h
-rw-r--r--.1rootroot479Nov1610:58x265.def
-rw-r--r--.1rootroot244Nov1610:58x265.pc

#makeinstall
[64%]Builttargetcommon
[88%]Builttargetencoder
[88%]Builttargetx265-shared
[100%]Builttargetcli
[100%]Builttargetx265-static
Installtheproject...
--Installconfiguration:"Release"
--Installing:/usr/local/lib/libx265.a
--Installing:/usr/local/include/x265.h
--Installing:/usr/local/include/x265_config.h
--Installing:/usr/local/lib/libx265.so.130
--Installing:/usr/local/lib/libx265.so
--Installing:/usr/local/lib/pkgconfig/x265.pc
--Installing:/usr/local/bin/x265
--Removedruntimepathfrom"/usr/local/bin/x265"

补充:x264和x265的对比
265相当于对图像进行了有重点的编码,从而降低了整体的码率,编码效率就相应提高了。
画质对比:265比264皮肤更细腻;
压缩比对比:压缩率更高,节省三分之一;
硬件支持:瑞芯微RK3188支持265的快播盒子已经上市;
同等画质体积仅为三分之二、带宽节省三分之一、画质更细腻等诸多优势;
解码难度是264的3倍。
H.265的帧内预测模式支持33种方向(H.264只支持8种),并且提供了更好的运动补偿处理和矢量预测方法。
大有H.264当时的风采,压缩效率依然提升了一倍,解码难度轻描淡写地增加了3倍

5、开始编译安装ffmpeg
下载地址:http://ffmpeg.org/download.html
#tarxfffmpeg-3.4.tar.bz2
#cdffmpeg-3.4
#./configure--prefix=/opt/app/ffmpeg3\
--enable-shared\
--enable-filter=delogo\
--enable-gpl\
--enable-libass\
--enable-libfreetype\
--enable-libopus\
--enable-libvorbis\
--enable-libvpx\
--enable-libx264\
--enable-libx265\
--enable-nonfree

如果出现error如下:
ERROR:x265notfoundusingpkg-config
Ifyouthinkconfiguremadeamistake,makesureyouareusingthelatest
versionfromGit.Ifthelatestversionfails,reporttheproblemtothe
ffmpeg-user@ffmpeg.orgmailinglistorIRC#ffmpegonirc.freenode.net.
Includethelogfile"ffbuild/config.log"producedbyconfigureasthiswillhelp
solvetheproblem.

原因是需要设置PKG_CONFIG_PATH,通过pkg-config去指定路径自动寻找需要链接的依赖库,解决方法如下:
#exportPKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH(此路径为.pc文件所在路径),可使用
#echo$PKG_CONFIG_PATH查看
/usr/local/lib/pkgconfig:/usr/local/lib/
然后重新编译就ok了!

继续执行
#make#需要较长的时间,30分钟左右
#makeinstall

6、查看版本
#/opt/app/ffmpeg3/bin/ffmpeg
/opt/app/ffmpeg3/bin/ffmpeg:errorwhileloadingsharedlibraries:libavdevice.so.57:cannotopensharedobjectfile:Nosuchfileordirectory

原因是lib目录未加载到链接到系统库中,系统ld目录列表在/etc/ld.so.conf中,打开文件会发现,里面引用了/etc/ld.so.conf.d/下面所有的.conf文件
解决方法;
#vim/etc/ld.so.conf.d/ffmpeg.conf然后添加一行内容:
/opt/app/ffmpeg3/lib保存并退出,执行#ldconfig使配置生效,再次执行./ffmpeg-version显示就正常了

如果再提示errorwhileloadingsharedlibraries:libx265.so.130:cannotopensharedobjectfile:Nosuchfileordirectory
解决方法和上面一样:
#vim/etc/ld.so.conf.d/ffmpeg.conf
/opt/app/ffmpeg3/lib/
/usr/local/lib/#添加一行,因为x265的lib库是在/usr/local/lib目录

再次执行#ldconfig命令,再次查看ffmpeg版本就正常了。

#/opt/app/ffmpeg3/bin/ffmpeg-version
ffmpegversion3.4Copyright(c)2000-2017theFFmpegdevelopers
builtwithgcc4.4.7(GCC)20120313(RedHat4.4.7-18)
configuration:--prefix=/opt/app/ffmpeg3--enable-shared--enable-filter=delogo--enable-gpl--enable-libass--enable-libfreetype--enable-libopus--enable-libvorbis--enable-libvpx--enable-libx264--enable-libx265--enable-nonfree
libavutil55.78.100/55.78.100
libavcodec57.107.100/57.107.100
libavformat57.83.100/57.83.100
libavdevice57.10.100/57.10.100
libavfilter6.107.100/6.107.100
libswscale4.8.100/4.8.100
libswresample2.9.100/2.9.100
libpostproc54.7.100/54.7.100

7、其它模块
ffmpeg可以编译进很多模块,根据自己的需要来添加,比如安装lame
下载地址:https://sourceforge.net/projects/lame/files/lame/3.100/
#tarxflame-3.100.tar.gz
#cdlame
#./configure
#make
#makeinstall

然后编译ffmpeg的时候添加--enable-libmp3lame即可。

三、ffmpeg的用法

#./ffmpeg--help#查看ffmpeg的用法
一个例子:
#ffmpeg-ilogo.mp4-vfdelogo=1:1:20:20:1a.mp4-y#按照一定尺寸调整mp4视频

网上参考链接:
http://coders.blog.51cto.com/3203119/1566314
https://www.cnblogs.com/wainiwann/p/4128154.html


其他参考链接

https://www.cnblogs.com/freeweb/p/6897907.html

https://bitbucket.org/multicoreware/x265/wiki/Home

原文链接:https://www.f2er.com/centos/375268.html

猜你在找的CentOS相关文章