aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCrendKing <975235+CrendKing@users.noreply.github.com>2023-11-07 08:18:19 -0800
committerGitHub <noreply@github.com>2023-11-07 17:18:19 +0100
commit21b25281c51523620706b11bfc1c4a889858e1f2 (patch)
treee198dc684fa4ea45dd015923353270dd0f2408c1
parent4a601c9eff9fb42e24a4c8da3fa03628e035b35b (diff)
[fd/aria2c] Remove duplicate `--file-allocation=none` (#8332)
Authored by: CrendKing
-rw-r--r--yt_dlp/downloader/external.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/downloader/external.py b/yt_dlp/downloader/external.py
index 4ce8a3bf7..ce5eeb0a9 100644
--- a/yt_dlp/downloader/external.py
+++ b/yt_dlp/downloader/external.py
@@ -335,7 +335,7 @@ class Aria2cFD(ExternalFD):
cmd += ['--auto-file-renaming=false']
if 'fragments' in info_dict:
- cmd += ['--file-allocation=none', '--uri-selector=inorder']
+ cmd += ['--uri-selector=inorder']
url_list_file = '%s.frag.urls' % tmpfilename
url_list = []
for frag_index, fragment in enumerate(info_dict['fragments']):