Changed error output if missing ffmpeg.

This commit is contained in:
Joe 2018-06-17 21:08:15 +02:00
parent 1ee1385360
commit 30a35b9e10

View File

@ -12,8 +12,7 @@ GREP=$(grep --version | grep -q GNU && echo "grep" || echo "ggrep")
if ! [ -x "$(command -v ffmpeg)" ]
then
echo "Please make sure that ffplay is installed and in your PATH."
echo "This is usually installed as a part of the ffmpeg package."
echo "Please make sure that ffmpeg is installed and in your PATH."
exit 1
fi