Fix #2005: list AIFF as a lossless format

This commit is contained in:
Adrian Sampson 2016-05-18 11:24:34 -07:00
parent 0f4b454c20
commit ef7cca4c12
2 changed files with 3 additions and 1 deletions

View file

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

View file

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