aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-04-15 10:36:41 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-04-15 17:05:56 +0530
commit3b9d9f437469e651d5c65a0fa89d65bd2b95c738 (patch)
treecc8769a1e813e7376415c22987302728d1d29ac9
parentaffc4fefea9119f132cc757a6d9e797f3b03e448 (diff)
downloadhypervideo-pre-3b9d9f437469e651d5c65a0fa89d65bd2b95c738.tar.lz
hypervideo-pre-3b9d9f437469e651d5c65a0fa89d65bd2b95c738.tar.xz
hypervideo-pre-3b9d9f437469e651d5c65a0fa89d65bd2b95c738.zip
Do not change fragment chunk-size when `--test`
Closes #3434
-rw-r--r--yt_dlp/downloader/fragment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/downloader/fragment.py b/yt_dlp/downloader/fragment.py
index a2a2fe950..e5bc23e54 100644
--- a/yt_dlp/downloader/fragment.py
+++ b/yt_dlp/downloader/fragment.py
@@ -177,7 +177,7 @@ class FragmentFD(FileDownloader):
'ratelimit': self.params.get('ratelimit'),
'retries': self.params.get('retries', 0),
'nopart': self.params.get('nopart', False),
- 'test': self.params.get('test', False),
+ 'test': False,
}
)
tmpfilename = self.temp_name(ctx['filename'])