From 9989aa5ad628781e90c4f010583df13a1c358525 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 28 Jan 2021 19:05:00 +0100 Subject: [PATCH] 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 --- AAXtoMP3 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/AAXtoMP3 b/AAXtoMP3 index f1a3658..e74c28d 100755 --- a/AAXtoMP3 +++ b/AAXtoMP3 @@ -169,9 +169,10 @@ if [[ "x$(type -P ffmpeg)" == "x" ]]; then echo "ERROR ffmpeg was not found on your env PATH variable" 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 bc" - echo "RHEL: yum 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 (20.04): sudo apt-get update; sudo apt-get install ffmpeg x264 x265 bc" + echo "RHEL: yum install ffmpeg" exit 1 fi