diff options
author | CrendKing <975235+CrendKing@users.noreply.github.com> | 2023-11-07 08:18:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 17:18:19 +0100 |
commit | 21b25281c51523620706b11bfc1c4a889858e1f2 (patch) | |
tree | e198dc684fa4ea45dd015923353270dd0f2408c1 | |
parent | 4a601c9eff9fb42e24a4c8da3fa03628e035b35b (diff) |
[fd/aria2c] Remove duplicate `--file-allocation=none` (#8332)
Authored by: CrendKing
-rw-r--r-- | yt_dlp/downloader/external.py | 2 |
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']): |