Skip to content

Instantly share code, notes, and snippets.

View AdrianHL's full-sized avatar
⚒️
Senior Software Engineer

Adrian Hernandez Lopez AdrianHL

⚒️
Senior Software Engineer
View GitHub Profile
@AdrianHL
AdrianHL / install_ffmpeg_centos_7.sh
Last active June 9, 2021 04:53
Install FFmpeg in CentOS 7
#!/bin/sh
yum -y update
yum -y install autoconf automake gcc gcc-c++ git libtool make nasm pkgconfig zlib-devel freetype-devel speex-devel ladspa-devel mercurial cmake
mkdir ~/ffmpeg_sources
#NASM
cd ~/ffmpeg_sources
curl -O -L http://www.nasm.us/pub/nasm/releasebuilds/2.14/nasm-2.14.tar.bz2