码迷,mamicode.com
首页 > 其他好文 > 详细

Install ffmpeg on CentOS (RHEL/Fedora)

时间:2015-08-27 16:54:16      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

mkdir ffmpeg_sources

cd ffmpeg_sources/


yasm

wget http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz

tar zxvf yasm-1.2.0.tar.gz

./configure

make && sudo make install


x264

git clone git://git.videolan.org/x264.git

cd x264

./configure --enable-static

make && sudo make install


lame

curl -L -O http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz

tar zxf lame-3.99.5.tar.gz

./configure --enable-nasm

make && sudo make install


ogg

wget http://downloads.xiph.org/releases/ogg/libogg-1.3.0.tar.gz

tar zxvf libogg-1.3.0.tar.gz

cd libogg-1.3.0

./configure

make && sudo make install


libvorbis

curl -O http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.gz

tar zxvf libvorbis-1.3.4.tar.gz

./configure --with-ogg

make && sudo make install


libvpx

git clone git:////github.com/webmproject/libvpx.git

cd libvpx/

./configure

make && sudo make install


sudo echo /usr/local/lib > /etc/ld.so.conf.d/local-libs.conf

sudo ldconfig


ffmpeg

git clone git://git.videolan.org/ffmpeg.git ffmpeg

cd ffmpeg

./configure --enable-libmp3lame --enable-gpl --enable-libx264 --enable-libxvid --enable-postproc --enable-nonfree --enable-libvpx --enable-libvorbis --enable-libfaac

make && sudo make install



ffmpeg -headers "X-Forwarded-For: 160.53.186.194" -i http://stmw.rthk.hk/aod/_definst_/radio/archive/radio1/City_Snapshot/mp3/mp3:20150824.mp3/playlist.m3u8 -c copy City_Snapshot-20150824-.mp3

the option "headers" must be put here for download this m3u8


Reference

https://trac.ffmpeg.org/wiki/CompilationGuide/Centos

http://injustfiveminutes.com/2013/07/17/how-to-compile-latest-version-of-ffmpeg-on-centos-5/


Install ffmpeg on CentOS (RHEL/Fedora)

标签:

原文地址:http://my.oschina.net/l1z2g9/blog/498050

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!