Merge pull request #2032 from pszxzsd/bs1770

make bs1770gain calculate sample peak instead of true peak
This commit is contained in:
Adrian Sampson 2016-06-02 16:17:04 -07:00
commit ae7990322a
2 changed files with 7 additions and 1 deletions

View file

@ -195,7 +195,7 @@ class Bs1770gainBackend(Backend):
# Construct shell command.
cmd = [self.command]
cmd = cmd + [self.method]
cmd = cmd + [b'-it']
cmd = cmd + [b'-p']
# Workaround for Windows: the underlying tool fails on paths
# with the \\?\ prefix, so we don't use it here. This

View file

@ -11,6 +11,12 @@ Some fixes for Windows:
* Queries are now detected as paths when they contain backslashes (in
addition to forward slashes). This only applies on Windows.
Fixes:
* :doc:`/plugins/replaygain`: The ``bs1770gain`` backend now correctly
calculates sample peak instead of true peak. This comes with a major
speed increase. :bug:`2031`
1.3.18 (May 31, 2016)
---------------------