mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 01:25:47 +01:00
obey Travis orders
This commit is contained in:
parent
187497c8c6
commit
1bffe2a7bf
3 changed files with 5 additions and 3 deletions
|
|
@ -633,7 +633,7 @@ def command_output(cmd, shell=False):
|
|||
Python 2.6 and which can have problems if lots of output is sent to
|
||||
stderr.
|
||||
"""
|
||||
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
||||
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE,
|
||||
close_fds=platform.system() != 'Windows',
|
||||
shell=shell)
|
||||
|
|
|
|||
|
|
@ -225,6 +225,7 @@ def extract(outpath, item):
|
|||
|
||||
# 'clearart' command.
|
||||
|
||||
|
||||
def clear(lib, query):
|
||||
log.info(u'Clearing album art from items:')
|
||||
for item in lib.items(query):
|
||||
|
|
|
|||
|
|
@ -34,9 +34,10 @@ the two does not exceed a given threshold.
|
|||
The threshold used is given by the ``compare_threshold`` option:
|
||||
|
||||
* use '0' to always embed image (disable similarity check)
|
||||
|
||||
* use any positive integer to define a similarity threshold. The smaller the
|
||||
value, the more similar the images must be. A value in the range [10,100] is
|
||||
recommended.
|
||||
value, the more similar the images must be. A value in the range [10,100] is
|
||||
recommended.
|
||||
|
||||
Requires `ImageMagick`_
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue