Skip to content

Commit

Permalink
[downloader/aria2c] Add --no-conf
Browse files Browse the repository at this point in the history
Closes #7404
  • Loading branch information
pukkandan committed Jun 26, 2023
1 parent d949c10 commit 8a8af35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/downloader/external.py
Expand Up @@ -271,7 +271,7 @@ def _call_downloader(self, tmpfilename, info_dict):
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:
Expand Down

0 comments on commit 8a8af35

Please sign in to comment.