mkdir ffmpeg_sourcesgit
cd ffmpeg_sources/github
yasmweb
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
x264shell
git clone git://git.videolan.org/x264.git cd x264 ./configure --enable-static make && sudo make install
lamecentos
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
oggcurl
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
libvorbiside
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
libvpxpost
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
ui
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 m3u8this
Reference
https://trac.ffmpeg.org/wiki/CompilationGuide/Centos
http://injustfiveminutes.com/2013/07/17/how-to-compile-latest-version-of-ffmpeg-on-centos-5/