Merge pull request #5122 from Bobo1239/master

convert: Correctly identify WAVE format as lossless
This commit is contained in:
Serene 2024-03-02 09:05:53 +10:00 committed by GitHub
commit 3548e35360
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

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

View file

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