1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-22 08:34:32 +01:00

[downloader/external] Respect progress option for aria2c

This commit is contained in:
telephono 2019-10-14 11:13:40 +02:00
parent c317b6163b
commit 9a83969c95

View File

@ -195,6 +195,7 @@ class Aria2cFD(ExternalFD):
cmd += self._option('--all-proxy', 'proxy')
cmd += self._bool_option('--check-certificate', 'nocheckcertificate', 'false', 'true', '=')
cmd += self._bool_option('--remote-time', 'updatetime', 'true', 'false', '=')
cmd += self._valueless_option('--quiet', 'noprogress')
cmd += ['--', info_dict['url']]
return cmd