From f44afb54ef5c0cf02fb9fe08be377929f94b9da8 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Mon, 27 Dec 2021 04:27:34 +0530 Subject: [PATCH] [aria2c] Don't show progress when `--no-progress` --- yt_dlp/downloader/external.py | 1 + 1 file changed, 1 insertion(+) diff --git a/yt_dlp/downloader/external.py b/yt_dlp/downloader/external.py index 84738221b..17be3c46f 100644 --- a/yt_dlp/downloader/external.py +++ b/yt_dlp/downloader/external.py @@ -265,6 +265,7 @@ def _make_cmd(self, tmpfilename, info_dict): 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._bool_option('--show-console-readout', 'noprogress', 'false', 'true', '=') cmd += self._configuration_args() # aria2c strips out spaces from the beginning/end of filenames and paths.