aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2023-06-26 16:13:31 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2023-06-26 16:13:31 +0530
commit8a8af356e3bba98a7f7d333aff0777d5d92130c8 (patch)
treee494aed4884accce497d231ec8bcd3181c560b47
parentd949c10c45bfc359bdacd52e6a180169b8128958 (diff)
downloadhypervideo-pre-8a8af356e3bba98a7f7d333aff0777d5d92130c8.tar.lz
hypervideo-pre-8a8af356e3bba98a7f7d333aff0777d5d92130c8.tar.xz
hypervideo-pre-8a8af356e3bba98a7f7d333aff0777d5d92130c8.zip
[downloader/aria2c] Add `--no-conf`
Closes #7404
-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 007689a8c..f637a100b 100644
--- a/yt_dlp/downloader/external.py
+++ b/yt_dlp/downloader/external.py
@@ -271,7 +271,7 @@ class Aria2cFD(ExternalFD):
return super()._call_downloader(tmpfilename, info_dict)
def _make_cmd(self, tmpfilename, info_dict):
- cmd = [self.exe, '-c',
+ cmd = [self.exe, '-c', '--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: