Skip to content

Instantly share code, notes, and snippets.

@paul91
Last active February 24, 2016 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paul91/9005179 to your computer and use it in GitHub Desktop.
Save paul91/9005179 to your computer and use it in GitHub Desktop.
Install ffmpeg v1.2.4 on CentOS 6.4
#!/bin/bash
# Can be obtained from RepoForge
yum install -y yasm
git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg
cd ffmpeg
git checkout n1.2.4
./configure
make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment