mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 12:02:41 +01:00
Fix #2005: list AIFF as a lossless format
This commit is contained in:
parent
0f4b454c20
commit
ef7cca4c12
2 changed files with 3 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ ALIASES = {
|
|||
u'vorbis': u'ogg',
|
||||
}
|
||||
|
||||
LOSSLESS_FORMATS = ['ape', 'flac', 'alac', 'wav']
|
||||
LOSSLESS_FORMATS = ['ape', 'flac', 'alac', 'wav', 'aiff']
|
||||
|
||||
|
||||
def replace_ext(path, ext):
|
||||
|
|
|
|||
|
|
@ -54,6 +54,8 @@ Fixes:
|
|||
artist and album names. :bug:`1960`
|
||||
* :doc:`/plugins/convert`: Change default `ogg` encoding quality from 2 to 3
|
||||
(to fit the default from the `oggenc(1)` manpage). :bug:`1982`
|
||||
* :doc:`/plugins/convert`: The `never_convert_lossy_files` option now
|
||||
considers AIFF a lossless format. :bug:`2005`
|
||||
|
||||
|
||||
1.3.17 (February 7, 2016)
|
||||
|
|
|
|||
Loading…
Reference in a new issue