From 0b382a7d72e647681e6022e01d953af4e4b7758f Mon Sep 17 00:00:00 2001 From: tcely Date: Sun, 1 Dec 2024 17:32:05 -0500 Subject: [PATCH] Remove continue from aria2c This doesn't actually work, or make sense, without configuring the stream selector to use `inorder` instead of `default` for the algorithm. Ideally, `aria2c` would write the needed information for resuming downloads in its own file before exiting. Otherwise, it's more reliable to download everything again. --- yt_dlp/downloader/external.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/downloader/external.py b/yt_dlp/downloader/external.py index 7f6b5b45cc..873df6c1da 100644 --- a/yt_dlp/downloader/external.py +++ b/yt_dlp/downloader/external.py @@ -293,7 +293,7 @@ class Aria2cFD(ExternalFD): return super()._call_downloader(tmpfilename, info_dict) def _make_cmd(self, tmpfilename, info_dict): - cmd = [self.exe, '-c', '--no-conf', + cmd = [self.exe, '--no-conf', '--console-log-level=warn', '--summary-interval=0', '--download-result=hide', '--http-accept-gzip=true', '--file-allocation=none', '-x16', '-j16', '-s16'] if 'fragments' in info_dict: