Skip to content

Instantly share code, notes, and snippets.

@grocky
Last active August 29, 2015 14:25
Show Gist options
  • Save grocky/01f58a4ca616ab9932a6 to your computer and use it in GitHub Desktop.
Save grocky/01f58a4ca616ab9932a6 to your computer and use it in GitHub Desktop.
Install ffmpeg
git clone git://source.ffmpeg.org/ffmpeg.git \
&& cd ffmpeg \
&& ./configure \
--disable-debug \
--enable-small \
--extra-libs=-ldl \
--enable-gpl \
--enable-libass \
--enable-libtheora \
--enable-libvorbis \
--enable-libx264 \
&& make -j$(getconf _NPROCESSORS_ONLN) \
&& make install \
&& make distclean \
&& cd /tmp \
&& rm -rf /tmp/ffmpeg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment