您的位置:首页 > 运维架构 > Linux

Install ffmpeg on CentOS (RHEL/Fedora)

2015-08-27 15:25 597 查看
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/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: