From 565999e58ae1c01ef3ac5040725f2f324d22ac8f Mon Sep 17 00:00:00 2001 From: tcely Date: Wed, 25 Dec 2024 03:29:35 -0500 Subject: [PATCH] Remove stderr changes --- yt_dlp/downloader/external.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/yt_dlp/downloader/external.py b/yt_dlp/downloader/external.py index 257c03367..d7cd8f38e 100644 --- a/yt_dlp/downloader/external.py +++ b/yt_dlp/downloader/external.py @@ -269,7 +269,6 @@ class WgetFD(ExternalFD): class Aria2cFD(ExternalFD): AVAILABLE_OPT = '-v' SUPPORTED_PROTOCOLS = ('http', 'https', 'ftp', 'ftps', 'dash_frag_urls', 'm3u8_frag_urls') - _CAPTURE_STDERR = False @staticmethod def supports_manifest(manifest): @@ -294,7 +293,7 @@ class Aria2cFD(ExternalFD): return super()._call_downloader(tmpfilename, info_dict) def _make_cmd(self, tmpfilename, info_dict): - cmd = [self.exe, '--no-conf', '--stderr=true', '--auto-save-interval=10', + cmd = [self.exe, '--no-conf', '--auto-save-interval=10', '--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: