mirror of
https://github.com/yt-dlp/yt-dlp
synced 2024-12-26 21:59:08 +01:00
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.
This commit is contained in:
parent
239f5f36fe
commit
0b382a7d72
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue