mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Merge pull request #5122 from Bobo1239/master
convert: Correctly identify WAVE format as lossless
This commit is contained in:
commit
3548e35360
2 changed files with 4 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ ALIASES = {
|
||||||
"vorbis": "ogg",
|
"vorbis": "ogg",
|
||||||
}
|
}
|
||||||
|
|
||||||
LOSSLESS_FORMATS = ["ape", "flac", "alac", "wav", "aiff"]
|
LOSSLESS_FORMATS = ["ape", "flac", "alac", "wave", "aiff"]
|
||||||
|
|
||||||
|
|
||||||
def replace_ext(path, ext):
|
def replace_ext(path, ext):
|
||||||
|
|
|
||||||
|
|
@ -155,6 +155,9 @@ New features:
|
||||||
* :doc:`/plugins/smartplaylist`: Add new option `smartplaylist.uri_format`.
|
* :doc:`/plugins/smartplaylist`: Add new option `smartplaylist.uri_format`.
|
||||||
* Sorted the default configuration file into categories.
|
* Sorted the default configuration file into categories.
|
||||||
:bug:`4987`
|
:bug:`4987`
|
||||||
|
* :doc:`/plugins/convert`: Don't treat WAVE (`.wav`) files as lossy anymore
|
||||||
|
when using the `never_convert_lossy_files` option. They will get transcoded
|
||||||
|
like the other lossless formats.
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue