mirror of
https://github.com/beetbox/beets.git
synced 2026-05-22 07:14:07 -04:00
convert: fix decision on which items to transcode
This commit is contained in:
@@ -123,7 +123,7 @@ def should_transcode(item):
|
||||
"""
|
||||
maxbr = config['convert']['max_bitrate'].get(int)
|
||||
format_name = config['convert']['format'].get(unicode)
|
||||
return format_name.lower() == item.format.lower() or \
|
||||
return format_name.lower() != item.format.lower() or \
|
||||
item.bitrate >= 1000 * maxbr
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user