[downloader/aria2c] Disable native progress
Closes #5931, closes #5928, Re-opens #2038
This commit is contained in:
parent
f079514957
commit
ad68b16a1e
2 changed files with 3 additions and 2 deletions
|
|
@ -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()),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue