首先要安装各种解码器
1、lame
lame-3.99.5.tar.gz?
Url:http://sourceforge.net/project/showfiles.php?group_id=290&package_id=309
安装方法如下:
<span style="color: #008080;line-height: 1.5 !important">1</span> tar -zxvf lame-<span style="color: #800080;line-height: 1.5 !important">3.99.5</span><span style="color: #000000;line-height: 1.5 !important">.tar.gz </span><span style="color: #008080;line-height: 1.5 !important">2</span> cd lame-<span style="color: #800080;line-height: 1.5 !important">3.99.5</span> <span style="color: #008080;line-height: 1.5 !important">3</span> ./configure --enable-shared
<span style="color: #008080;line-height: 1.5 !important">4</span> <span style="color: #000000;line-height: 1.5 !important"> make </span><span style="color: #008080;line-height: 1.5 !important">5</span> make install
2、libogg
libogg-1.3.1.tar.gz
Url:http://www.xiph.org/downloads/?
安装方法如下:
3、libvorbis
libvorbis-1.3.3.tar.gz
Url:http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.3.tar.gz
(libvorbis依赖于libogg, 所以libogg必须先于libvorbis安装)
安装方法如下:
<span style="color: #008080;line-height: 1.5 !important">1</span> ./configure
<span style="color: #008080;line-height: 1.5 !important">2</span> <span style="color: #000000;line-height: 1.5 !important"> make </span><span style="color: #008080;line-height: 1.5 !important">3</span> make install
4、xvid
xvidcore-1.3.2.tar.gz
Url:http://downloads.xvid.org/downloads/xvidcore-1.3.2.tar.gz
安装方法如下:
5、x264
latest_x264.tar.bz2 (其中包含的目录是 x264-snapshot-20131023-2245)
Url:http://www.videolan.org/developers/x264.html
ftp://ftp.videolan.org/pub/videolan/x264/snapshots/
安装方法如下:
1
2
3
4
|
1 2 3 4 |
补充如果遇到yasm错误需要安装yasm如下
?# cd /usr/local/src/video
# wget?http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz
# tar xzvf yasm-0.7.1.tar.gz
# cd yasm-0.7.1
# ./configure –prefix=/usr/local/yasm
# make && make install
6、libdts
libdca-0.0.5.tar.bz2
Url:?http://www.videolan.org/developers/libdca.html
安装方法:
7、a52
a52dec-0.7.4.tar.gz?????????? (这个库从2002年就没有更新过了)
http://liba52.sourceforge.net/downloads.html
安装方法:
8、faad2
faad2-2.7.tar.gz?(要选择这个扩展名的文件)
http://www.audiocoding.com/downloads.html
安装方法
9、faac
faac-1.28.tar.gz??(要选择这个扩展名的文件)
http://www.audiocoding.com/downloads.html
安装方法:
10、amr-nb
amrnb-10.0.0.0.tar.bz2
http://ftp.penguin.cz/pub/users/utx/amr/?( 从此处下载最新版本 )
安装方法:
11、amr-wb
amrwb-7.0.0.1.tar.bz2
http://ftp.penguin.cz/pub/users/utx/amr/?( 从此处下载最新版本 )
安装方法:
<span style="color: #008080;line-height: 1.5 !important">1</span> ./configure
<span style="color: #008080;line-height: 1.5 !important">2</span> <span style="color: #000000;line-height: 1.5 !important"> make </span><span style="color: #008080;line-height: 1.5 !important">3</span> make install
12、最关键的一步, 安装ffmpeg
1
2
3
|
1 2 3 |