1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 16:45:17 +00:00

[downloader/aria2c] Disable native progress

Closes #5931, closes #5928, Re-opens #2038
This commit is contained in:
pukkandan
2023-01-03 17:25:56 +05:30
parent f079514957
commit ad68b16a1e
2 changed files with 3 additions and 2 deletions

View File

@ -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()),