Fix ReplayGain metadata calculation and usage (#5084)

* Add FFMpeg binary to Ansible base dependencies

* Add replaygain operator line to LS config writer

* Update changelog
This commit is contained in:
Vaalyn 2022-02-09 03:40:47 +01:00 committed by GitHub
parent 983b6c50a8
commit 3625c7c8dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 2 deletions

View File

@ -29,6 +29,10 @@ release channel, you can take advantage of these new features and fixes.
- Fixed a bug where album art on the song requests page wouldn't respect "Prefer Browser URL" setting.
- Fixed a bug where Liquidsoap wasn't calculating the ReplayGain values of tracks due to a missing binary
- Added a missing Liquidsoap operator call to apply calculated ReplayGain values on the stream
---
# AzuraCast 0.15.0 (Jan 12, 2022)

View File

@ -956,6 +956,7 @@ class ConfigWriter implements EventSubscriberInterface
<<<EOF
# Replaygain Metadata
enable_replaygain_metadata()
radio = replaygain(radio)
EOF
);
}

View File

@ -34,7 +34,7 @@ else
fi
APP_ENV="${APP_ENV:-production}"
UPDATE_REVISION="${UPDATE_REVISION:-72}"
UPDATE_REVISION="${UPDATE_REVISION:-73}"
echo "Updating AzuraCast (Environment: $APP_ENV, Update revision: $UPDATE_REVISION)"

View File

@ -48,6 +48,7 @@
- libx11-dev
- libxpm-dev
- bubblewrap
- ffmpeg
- name: Install Optional Audio Plugins
apt:

View File

@ -20,7 +20,7 @@
- role: "azuracast-config"
- role: "azuracast-radio"
when: update_revision|int < 70
when: update_revision|int < 73
- role: "supervisord"
when: update_revision|int < 13