From 5637f7acc4cfc211902550ee162381acbf6c9049 Mon Sep 17 00:00:00 2001 From: Peter Oliver Date: Wed, 13 Jan 2021 13:47:16 +0000 Subject: [PATCH 1/4] Link to RPM Fusion package for Fedora. --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index ba28abd..a15c7f9 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ _**Windows 10 users:** Read [Installation on Windows 10 (Linux bash)](#installat - [MAIN FEATURES](#main-features) - [NEWS, CHANGELOG](#news-changelog) - [GETTING STARTED](#getting-started) +- [Installation using OS packages](#installation-using-os-packages) - [Installation using Homebrew (Mac & Linux)](#installation-using-homebrew-mac-linux) - [Installation on Windows 10 (Linux bash)](#installation-on-windows-10-linux-bash) - [DEPENDENCIES](#dependencies) @@ -272,6 +273,19 @@ See [loudgain makes it easy following the »Gold Standard«](#loudgain-makes-it- --- +## Installation using OS packages + +### Fedora + +`lougain` depends on FFmpeg, which is not included in Fedora for legal reasons. However, `loudgain` can instead be installed from the third-party RPM Fusion repository: + +```bash +rpm -q rpmfusion-free-release || sudo yum install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-`rpm -E %fedora`.noarch.rpm +sudo yum install loudgain +``` + +--- + ## Installation using Homebrew (Mac & Linux) **loudgain** can now be installed on MacOS X (and Linux, too) using [Homebrew](https://brew.sh/). From 65ea3acb266427a8f8bb7f6995e6fbb82fb85c3b Mon Sep 17 00:00:00 2001 From: Peter Oliver Date: Fri, 15 Jan 2021 13:32:42 +0000 Subject: [PATCH 2/4] Add links to Fedora installation instructions. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a15c7f9..e17c6f8 100644 --- a/README.md +++ b/README.md @@ -277,7 +277,7 @@ See [loudgain makes it easy following the »Gold Standard«](#loudgain-makes-it- ### Fedora -`lougain` depends on FFmpeg, which is not included in Fedora for legal reasons. However, `loudgain` can instead be installed from the third-party RPM Fusion repository: +`lougain` depends on FFmpeg, which is not included in [Fedora](https://getfedora.org/) for legal reasons. However, `loudgain` can instead be installed from the third-party [RPM Fusion](https://rpmfusion.org/) repository: ```bash rpm -q rpmfusion-free-release || sudo yum install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-`rpm -E %fedora`.noarch.rpm From bc155636b648bb40313a47eed5ddd447c2582de7 Mon Sep 17 00:00:00 2001 From: Peter Oliver Date: Tue, 26 Apr 2022 22:00:56 +0100 Subject: [PATCH 3/4] loudgain is now packaged for Fedora. --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e17c6f8..5f9235a 100644 --- a/README.md +++ b/README.md @@ -277,13 +277,19 @@ See [loudgain makes it easy following the »Gold Standard«](#loudgain-makes-it- ### Fedora -`lougain` depends on FFmpeg, which is not included in [Fedora](https://getfedora.org/) for legal reasons. However, `loudgain` can instead be installed from the third-party [RPM Fusion](https://rpmfusion.org/) repository: +From [Fedora](https://getfedora.org/) 36 onwards: ```bash -rpm -q rpmfusion-free-release || sudo yum install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-`rpm -E %fedora`.noarch.rpm sudo yum install loudgain ``` +The version of FFmpeg included with Fedora does not support some codecs for legal reasons, so you may prefer the FFmpeg package from the third-party [RPM Fusion](https://rpmfusion.org/) repository: + +```bash +rpm -q rpmfusion-free-release || sudo yum install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-`rpm -E %fedora`.noarch.rpm +yum swap --allowerasing ffmpeg-free ffmpeg +``` + --- ## Installation using Homebrew (Mac & Linux) From 1b8e6a92985fed1bebe571e9336b7aa2999aa6e0 Mon Sep 17 00:00:00 2001 From: Peter Oliver Date: Sun, 19 Mar 2023 15:43:05 +0000 Subject: [PATCH 4/4] Drop suggestion to install FFmpeg from RPM Fusion The audio codecs we care about are included with Fedora. --- README.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/README.md b/README.md index 5f9235a..d819586 100644 --- a/README.md +++ b/README.md @@ -275,21 +275,12 @@ See [loudgain makes it easy following the »Gold Standard«](#loudgain-makes-it- ## Installation using OS packages -### Fedora - -From [Fedora](https://getfedora.org/) 36 onwards: +### [Fedora](https://packages.fedoraproject.org/pkgs/loudgain/loudgain/) ```bash sudo yum install loudgain ``` -The version of FFmpeg included with Fedora does not support some codecs for legal reasons, so you may prefer the FFmpeg package from the third-party [RPM Fusion](https://rpmfusion.org/) repository: - -```bash -rpm -q rpmfusion-free-release || sudo yum install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-`rpm -E %fedora`.noarch.rpm -yum swap --allowerasing ffmpeg-free ffmpeg -``` - --- ## Installation using Homebrew (Mac & Linux)