This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |