Add note about package install on Ubuntu 20.04

gelma@gopt:/tmp/AudioLibro$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 20.04.1 LTS
Release:        20.04
Codename:       focal

gelma@gopt:/tmp/AudioLibro$ sudo apt-get install ffmpeg libav-tools x264 x265 bc
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libav-tools is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  ffmpeg:i386 ffmpeg

E: Package 'libav-tools' has no installation candidate
This commit is contained in:
Andrea Gelmini 2021-01-28 19:05:00 +01:00
parent b9f21a54f1
commit 9989aa5ad6

View File

@ -171,6 +171,7 @@ if [[ "x$(type -P ffmpeg)" == "x" ]]; then
echo "INSTALL:" echo "INSTALL:"
echo "MacOS: brew install ffmpeg" echo "MacOS: brew install ffmpeg"
echo "Ubuntu: sudo apt-get update; sudo apt-get install ffmpeg libav-tools x264 x265 bc" echo "Ubuntu: sudo apt-get update; sudo apt-get install ffmpeg libav-tools x264 x265 bc"
echo "Ubuntu (20.04): sudo apt-get update; sudo apt-get install ffmpeg x264 x265 bc"
echo "RHEL: yum install ffmpeg" echo "RHEL: yum install ffmpeg"
exit 1 exit 1
fi fi