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:
rlaphoenix 2024-01-09 09:56:15 +00:00
parent e54d4b4f41
commit 347c31d717
1 changed files with 0 additions and 1 deletions

View File

@ -62,7 +62,6 @@ async def aria2c(
arguments = [ arguments = [
"-c", # Continue downloading a partially downloaded file "-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 "-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 "-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 "-s", ("1" if segmented else "16"), # Download a file using N connections