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:
Boris-Chengbiao Zhou 2024-02-25 00:08:53 +01:00
parent dae525741b
commit 47ba590999
2 changed files with 4 additions and 1 deletions

View file

@ -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):

View file

@ -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: