mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 04:55:10 +01:00
Merge pull request #2032 from pszxzsd/bs1770
make bs1770gain calculate sample peak instead of true peak
This commit is contained in:
commit
ae7990322a
2 changed files with 7 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
---------------------
|
||||
|
|
|
|||
Loading…
Reference in a new issue