Created
October 21, 2008 21:04
-
-
Save newbamboo/18424 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
FFMPEG | |
--- | |
Compile ffmpeg with h264 support (debian doesn't include it) | |
http://www.jbkempf.com/blog/post/2007/10/04/Build-vlc-under-a-fresh-sid | |
./configure --enable-libx264 --enable-gpl --enable-libfaad | |
--enable-libfaac --enable-swscaler --enable-pp --enable-libmp3lame | |
--enable-libamr-nb --enable-libamr-wb --enable-liba52 | |
--enable-libtheora --enable-libvorbis --enable-libxvid | |
Codecs I need to add: qdm2, vp6f | |
Extra stuff for flash h264 | |
install gpac and nero's aac encoder | |
http://massanti.com/2007/09/28/encoding-h264-video-aac-plus-audio-for-flash/ | |
GPAC | |
sh ./configure --enable-sdl-static | |
make install-lib && make && make install | |
CODECS | |
---- | |
X264 | |
svn co svn://svn.videolan.org/x264/trunk x264 | |
./configure --enable-mp4-output --enable-shared | |
make && make install | |
AMR (samr) | |
http://ftp.penguin.cz/pub/users/utx/amr/ | |
FAAC | |
libfaa | |
A52 | |
http://liba52.sourceforge.net/downloads.html | |
ALAC | |
http://craz.net/programs/itunes/alac.html | |
THEORA etc... | |
http://www.theora.org/downloads/ | |
apt-get install libtheora0 libtheora-dev libvorbis0a libvorbis-dev | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment