[videoob] set non verbose mode for wget when downloading m3u8 (fix #1643)

This commit is contained in:
Bezleputh 2014-10-15 11:00:24 +02:00
commit 724a18873b

View file

@ -109,7 +109,7 @@ class Videoob(ReplApplication):
line = u'%s/%s' % (baseurl, line)
content += (line,)
args = ('wget',) + content + ('-O', dest)
args = ('wget', '-nv',) + content + ('-O', dest)
else:
if check_exec('wget'):
args = ('wget', '-c', video.url, '-O', dest)