Merge pull request #99 from javabrett/add-bc-in-script-prompt

Also add bc to apt-get install list as prompted by script
This commit is contained in:
KrumpetPirate 2019-03-10 12:03:17 -04:00 committed by GitHub
commit 5c2afd7d6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -163,7 +163,7 @@ if [[ "x$(type -P ffmpeg)" == "x" ]]; then
echo "Without it, this script will break."
echo "INSTALL:"
echo "MacOS: brew install ffmpeg"
echo "Ubuntu: sudo apt-get update; sudo apt-get install ffmpeg libav-tools x264 x265"
echo "Ubuntu: sudo apt-get update; sudo apt-get install ffmpeg libav-tools x264 x265 bc"
echo "RHEL: yum install ffmpeg"
exit 1
fi
@ -175,7 +175,7 @@ if [[ "x$(type -P ffprobe)" == "x" ]]; then
echo "Without it, this script will break."
echo "INSTALL:"
echo "MacOS: brew install ffmpeg"
echo "Ubuntu: sudo apt-get update; sudo apt-get install ffmpeg libav-tools x264 x265"
echo "Ubuntu: sudo apt-get update; sudo apt-get install ffmpeg libav-tools x264 x265 bc"
echo "RHEL: yum install ffmpeg"
exit 1
fi