Skip to content

Instantly share code, notes, and snippets.

View mperov's full-sized avatar
🏠
Working from home

Maksim Perov mperov

🏠
Working from home
View GitHub Profile
@mperov
mperov / install-ffmpeg-centos.sh
Created December 6, 2022 06:43 — forked from freedomlang/install-ffmpeg-centos.sh
Compile ffmpeg in CentOS 7
#!/bin/bash
if [ "`/usr/bin/whoami`" != "root" ]; then
echo "You need to execute this script as root."
exit 1
fi
###############################################################################
# ffmpeg installer for centos 7
# based on instructions at https://trac.ffmpeg.org/wiki/CompilationGuide/Centos