forked from DRMTalks/devine
No longer retrieve timestamp of downloads in aria2c
For downloads by devine, there's generally no reason to retrieve this information when it will be decrypted, repacked, remuxed, and so on anyway. Requesting the timestamp will just mean more requests being made, perhaps slowing down the download.
This commit is contained in:
parent
e54d4b4f41
commit
347c31d717
|
@ -62,7 +62,6 @@ async def aria2c(
|
|||
|
||||
arguments = [
|
||||
"-c", # Continue downloading a partially downloaded file
|
||||
"--remote-time", # Retrieve timestamp of the remote file from the and apply if available
|
||||
"-x", "16", # The maximum number of connections to one server for each download
|
||||
"-j", "16", # The maximum number of parallel downloads for every static (HTTP/FTP) URL
|
||||
"-s", ("1" if segmented else "16"), # Download a file using N connections
|
||||
|
|
Loading…
Reference in New Issue