Last active
August 29, 2015 14:25
-
-
Save grocky/01f58a4ca616ab9932a6 to your computer and use it in GitHub Desktop.
Install ffmpeg
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
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