Created
October 11, 2012 07:36
-
-
Save xkikeg/3870796 to your computer and use it in GitHub Desktop.
ffmpeg configure script
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
#!/bin/sh | |
#version 1.0 | |
#CPU=corei7 | |
CPU=core2 | |
./configure\ | |
--prefix=${HOME}/local\ | |
--enable-shared\ | |
--enable-gpl\ | |
--enable-version3\ | |
--enable-nonfree\ | |
--enable-postproc\ | |
--enable-memalign-hack\ | |
--enable-libfaac\ | |
--enable-libmp3lame\ | |
--enable-libspeex\ | |
--enable-libtheora\ | |
--enable-libvorbis\ | |
--enable-libvpx\ | |
--enable-libx264\ | |
--enable-libxvid\ | |
--cpu=$CPU |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment