mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
convert: Correctly identify WAVE format as lossless
Seems like this entry was added before mediafile gained support for WAVE files in commit 832f3d. Adjust it to fix detection.
This commit is contained in:
parent
dae525741b
commit
47ba590999
2 changed files with 4 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ ALIASES = {
|
|||
"vorbis": "ogg",
|
||||
}
|
||||
|
||||
LOSSLESS_FORMATS = ["ape", "flac", "alac", "wav", "aiff"]
|
||||
LOSSLESS_FORMATS = ["ape", "flac", "alac", "wave", "aiff"]
|
||||
|
||||
|
||||
def replace_ext(path, ext):
|
||||
|
|
|
|||
|
|
@ -153,6 +153,9 @@ New features:
|
|||
* :doc:`/plugins/smartplaylist`: Add new option `smartplaylist.uri_format`.
|
||||
* Sorted the default configuration file into categories.
|
||||
: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:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue