[videoob] set non verbose mode for wget when downloading m3u8 (fix #1643)
This commit is contained in:
parent
725adb1ed4
commit
724a18873b
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ class Videoob(ReplApplication):
|
||||||
line = u'%s/%s' % (baseurl, line)
|
line = u'%s/%s' % (baseurl, line)
|
||||||
content += (line,)
|
content += (line,)
|
||||||
|
|
||||||
args = ('wget',) + content + ('-O', dest)
|
args = ('wget', '-nv',) + content + ('-O', dest)
|
||||||
else:
|
else:
|
||||||
if check_exec('wget'):
|
if check_exec('wget'):
|
||||||
args = ('wget', '-c', video.url, '-O', dest)
|
args = ('wget', '-c', video.url, '-O', dest)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue