FFMPEG安装配置文档
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-25
安装环境
操作系统:CentOS 5.3
一、FFMEPG安装前的支持软件包 1、lame 支持mp3 Url:http://sourceforge.net/project/showfiles.php?group_id=290&package_id=309 ##################################### tar -zxvf lame-398.tar.gz cd lame-398 ./configure --enable-shared --prefix=/usr make && make install ##################################### 2、libogg Url:http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz ################################### tar xvfz libogg-1.1.3.tar.gz cd libogg-1.1.3 ./configure --prefix=/usr make && make install ################################### 3、libvorbis Url:http://downloads.xiph.org/releases/vorbis/libvorbis-1.1.2.tar.gz ##################################### tar xvfz libvorbis-1.1.2.tar.gz cd libvorbis-1.1.2 ./configure --prefix=/usr make && make install ##################################### 4、xvid 高质量的压缩格式 Url:http://downloads.xvid.org/downloads/xvidcore-1.1.3.tar.gz ##################################### tar zvxf xvidcore-1.1.3.tar.gz cd xvidcore-1.1.3/build/generic ./configure --prefix=/usr make && make install ##################################### (补充)安裝 yasm 彙編器 yasm-0.6.0.tar.gz # cd /usr/local/src/video # wget http://www.tortall.net/projects/yasm/releases/yasm-0.7.1.tar.gz # tar xzvf yasm-0.7.1.tar.gz # cd yasm-0.7.1 # ./configure --prefix=/usr/local/yasm # make && make install export PATH=''$PATH:/usr/local/yasm/bin'' #vi /etc/profile export PATH=''$PATH:/usr/local/yasm/bin'' ##################################### 5、x264 高质量的压缩格式 x264-snapshot-20080401-2245.tar.bz2 (PS:最新包无法编译成功) Url:http://www.videolan.org/developers/x264.html ftp://ftp.videolan.org/pub/videolan/x264/snapshots/ ##################################### tar xvfj x264-snapshot-20080401-2245.tar.bz2 cd x264-snapshot-20080401-2245 ./configure --prefix=/usr --enable-shared make && make install ##################################### 支持AC3和DTS 6、libdts dts编码的支持 http://download.videolan.org/pub/videolan/libdca/0.0.2/libdca-0.0.2.tar.gz ##################################### tar zxvf libdca-0.0.2.tar.gz cd libdts-0.0.2 ./configure --prefix=/usr make && make install ##################################### 7、a52 a52dec-0.7.4.tar.gz http://liba52.sourceforge.net/downloads.html ##################################### tar xvfz a52dec-0.7.4.tar.gz cd a52dec-0.7.4 ./configure --prefix=/usr make && make install ##################################### 支持MPEG4和AAC 8、faad2 faad2-2.6.1.tar.gz http://www.audiocoding.com/downloads.html ##################################### tar xvfz faad2-2.6.1.tar.gz cd faad2 autoreconf -vif ./configure --prefix=/usr --with-mp4v2 --enable-shared make && make install ##################################### 9、faac faac-1.26.tar.gz http://linux.softpedia.com/progDownload/FAAC-Download-554.html ##################################### tar zxvf faac-1.26.tar.gz cd faac ./bootstrap ./configure |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于FFMPEG安装配置文档的所有评论