aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/downloader/external.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2023-01-03 17:25:56 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2023-01-03 17:25:56 +0530
commitad68b16a1e82d0b22b619cea128d52f7d5d2b330 (patch)
treeece757be885bff276d9dbe58d9410b776fce3548 /yt_dlp/downloader/external.py
parentf079514957401f49db30ec4cd25f8c8246b0c1de (diff)
downloadhypervideo-pre-ad68b16a1e82d0b22b619cea128d52f7d5d2b330.tar.lz
hypervideo-pre-ad68b16a1e82d0b22b619cea128d52f7d5d2b330.tar.xz
hypervideo-pre-ad68b16a1e82d0b22b619cea128d52f7d5d2b330.zip
[downloader/aria2c] Disable native progress
Closes #5931, closes #5928, Re-opens #2038
Diffstat (limited to 'yt_dlp/downloader/external.py')
-rw-r--r--yt_dlp/downloader/external.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/yt_dlp/downloader/external.py b/yt_dlp/downloader/external.py
index 569839f6f..3917af448 100644
--- a/yt_dlp/downloader/external.py
+++ b/yt_dlp/downloader/external.py
@@ -262,7 +262,8 @@ class Aria2cFD(ExternalFD):
return fn if os.path.isabs(fn) else f'.{os.path.sep}{fn}'
def _call_downloader(self, tmpfilename, info_dict):
- if 'no-external-downloader-progress' not in self.params.get('compat_opts', []):
+ # FIXME: Disabled due to https://github.com/yt-dlp/yt-dlp/issues/5931
+ if False and 'no-external-downloader-progress' not in self.params.get('compat_opts', []):
info_dict['__rpc'] = {
'port': find_available_port() or 19190,
'secret': str(uuid.uuid4()),