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
在Ubuntu下安装FFmpeg