FFmpeg安装及encode库的安装说明(2)

3、安装 vp8 编码库
1)下载源码包:https://github.com/webmproject/libvpx/releases/tag/v1.6.0
2)tar -zxvf libvpx-1.6.0.tar.gz.
3)cd libvpx-1.6.0/
4)./configure
5)make
6)make install

Vp8 安装完成

重新编译ffmpeg(也可以先安装下边的两个包,到时候一起编译,节约时间)
进入ffmpeg目录,
./configure –enable-gpl –enable-libtheora –enable-libx264 –enable-libvpx,然后就生成了新的makefile了。
执行make clean 完了之后make 完了之后make install。

现在ffmpeg能转的编码格式如下表,我们刚刚安装的三个格式都已经在里面了

三、使用方法

这是我使用的三种格式的转码方式

ffmpeg -i test.avi -vcodec libx264 -acodec aac testout.m4v 或者 ffmpeg -i test.avi -vcodec h264 -acodec aac testout.m4v

ffmpeg -i test.avi -vcodec libtheora -acodec vorbis -strict -2 testout.ogv

ffmpeg -i test.avi -vcodec vp8 -acodec vorbis -strict -2 testout.webm

还有这篇 ,上面有ffmpeg的更具体的使用方法

Linux下编译FFmpeg之下载源文件并编译

Linux 编译升级 FFmpeg 步骤

Ubuntu下安装FFmpeg

Linux 下编译FFmpeg 支持x264, x265 

VS2013编译FFmpeg 

在 Mac OS X 环境中从源代码编译安装 FFmpeg 

Ubuntu 12.04下编译ffmpeg 

Ubuntu 14.04下PPA安装FFmpeg 2.2.2 

FFmpeg 的详细介绍请点这里
FFmpeg 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/14840.html