Skip to content

Instantly share code, notes, and snippets.

View bodny's full-sized avatar

Tomas Bodnar bodny

  • Bratislava, Slovakia
View GitHub Profile
@bodny
bodny / latest-ffmpeg-centos7.sh
Last active November 24, 2024 21:24 — forked from mustafaturan/latest-ffmpeg-centos6.sh
Installs latest ffmpeg on Centos 7
# source: https://trac.ffmpeg.org/wiki/CentosCompilationGuide
yum -y install autoconf automake gcc gcc-c++ git libtool make nasm pkgconfig zlib-devel
mkdir ~/ffmpeg_sources
cd ~/ffmpeg_sources
curl -O http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz
tar xzvf yasm-1.2.0.tar.gz
cd yasm-1.2.0