Skip to content

Instantly share code, notes, and snippets.

View gh0stwizard's full-sized avatar

Vitaliy V. Tokarev gh0stwizard

  • 04:27 (UTC +03:00)
View GitHub Profile
@gh0stwizard
gh0stwizard / latest-ffmpeg-centos6.sh
Last active July 27, 2017 06:48 — forked from mustafaturan/latest-ffmpeg-centos6.sh
Installs latest ffmpeg on Centos 6
# source: https://trac.ffmpeg.org/wiki/CentosCompilationGuide
# yum install -y autoconf automake gcc gcc-c++ git libtool make nasm pkgconfig zlib-devel freetype-devel speex-devel
dldir=$HOME/ffmpeg_sources
prefix=$HOME/ffmpeg_build
bindir=$HOME/bin
CURL="curl -L -C - -O"
[[ ! -e ${dldir} ]] && (mkdir -p ${dldir} || exit 1)