Skip to content
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -272,6 +273,25 @@ See [loudgain makes it easy following the »Gold Standard«](#loudgain-makes-it-

---

## Installation using OS packages

### Fedora

From [Fedora](https://getfedora.org/) 36 onwards:

```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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead recommend installing libavcodec-freeworld to overlay the extra codecs.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the tip. Actually, these days I don't think RPM Fusion adds any useful audio codecs, so I'm going to drop the suggestion entirely.

```

---

## Installation using Homebrew (Mac & Linux)

**loudgain** can now be installed on MacOS X (and Linux, too) using [Homebrew](https://brew.sh/).
Expand Down