diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-14 18:36:59 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-14 18:36:59 -0600 |
| commit | efa2dd9e490161db7df2104f1ed15af9d4264050 (patch) | |
| tree | d72aba6662facd310225965ef17b84b0125a8615 | |
| parent | dd0e2d432955d1ae908cc67c2db47453db6521d0 (diff) | |
feat(archsetup): add loudgain-ffmpeg7, set mpd replaygain to auto
Add loudgain-ffmpeg7 (AUR) for ReplayGain/EBU R128 scanning.
Switch mpd replaygain from "track" to "auto" for album-aware playback.
| -rwxr-xr-x | archsetup | 1 | ||||
| -rw-r--r-- | assets/outbox/loudgain-ffmpeg7 | 6 | ||||
| -rw-r--r-- | dotfiles/common/.config/mpd/mpd.conf | 2 |
3 files changed, 8 insertions, 1 deletions
@@ -1969,6 +1969,7 @@ supplemental_software() { pacman_install mpd # music player daemon pacman_install mpc # mpd command line client pacman_install ncmpcpp # ncurses mpd client + aur_install loudgain-ffmpeg7 # ReplayGain / EBU R128 scanner pacman_install opus # opus audio codec (all music in opus format) pacman_install wavpack # audio compression format pacman_install webkit2gtk # web content engine for GTK diff --git a/assets/outbox/loudgain-ffmpeg7 b/assets/outbox/loudgain-ffmpeg7 new file mode 100644 index 0000000..5a8fa19 --- /dev/null +++ b/assets/outbox/loudgain-ffmpeg7 @@ -0,0 +1,6 @@ +loudgain-ffmpeg7 (AUR) + +ReplayGain / EBU R128 scanner for FLAC and MP3 files. +Used during music reconciliation to write ReplayGain tags (track and album gain) +so MPD can normalize playback volume across different albums and playlists. +Installed 2026-02-14. diff --git a/dotfiles/common/.config/mpd/mpd.conf b/dotfiles/common/.config/mpd/mpd.conf index d084cb2..89a5d76 100644 --- a/dotfiles/common/.config/mpd/mpd.conf +++ b/dotfiles/common/.config/mpd/mpd.conf @@ -367,7 +367,7 @@ audio_output { # See <http://www.replaygain.org> for more details about ReplayGain. # This setting is off by default. # -replaygain "track" +replaygain "auto" # # This setting sets the pre-amp used for files that have ReplayGain tags. By # default this setting is disabled. |
