Skip to content

Instantly share code, notes, and snippets.

@jaimerodas
Created October 8, 2012 04:11
Show Gist options
  • Save jaimerodas/3850677 to your computer and use it in GitHub Desktop.
Save jaimerodas/3850677 to your computer and use it in GitHub Desktop.
Instalar ffmpeg en OSX
# Primero asegúrate que xcode y sus command line tools estén instaladas
# Tienes que descargar LAME, x264, faac y ffmpeg
# LAME - http://sourceforge.net/projects/lame/files/latest/download
# x264 - git clone git://git.videolan.org/x264.git
# faac - http://sourceforge.net/projects/faac/files/latest/download
# ffmpeg - git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg
# Instalar LAME
cd lame/; ./configure && make && sudo make install; cd ..
# Instalar x264
cd x264/; ./configure --enable-shared && make && sudo make install; cd ..
# Instalar faac
cd faac/; ./configure && make && sudo make install; cd ..
# Instalar ffmpeg
cd ffmpeg/
./configure --enable-shared --enable-nonfree --enable-libfaac --enable-libmp3lame --disable-yasm && make && sudo make install
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment