Skip to content

Instantly share code, notes, and snippets.

@fernyb
Created February 11, 2013 00:18
Show Gist options
  • Save fernyb/4751658 to your computer and use it in GitHub Desktop.
Save fernyb/4751658 to your computer and use it in GitHub Desktop.
ffmpeg:
./configure --prefix=/usr/local/ffmpeg \
--disable-yasm \
--enable-shared \
--enable-libmp3lame \
--enable-libx264 \
--enable-libxvid \
--enable-libfaac \
--enable-libtheora \
--enable-libvorbis \
--enable-bzlib \
--enable-zlib \
--enable-gpl \
--enable-nonfree \
--enable-version3 \
--enable-libvpx \
--disable-mmx \
--cpu=core2
nginx:
./configure --prefix=/usr/local/nginx \
--add-module=/home/fernyb/sources/nginx-files/nginx-rtmp-module \
--add-module=/home/fernyb/sources/nginx-files/nginx-rtmp-module/hls \
--with-cc-opt=-I/usr/local/ffmpeg/include \
--with-ld-opt='-L/usr/local/ffmpeg/lib -Wl,-rpath=/usr/local/ffmpeg/lib'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment