From e12b17649adb621d89c79f5105b81efc55e9cfe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sun, 28 Dec 2025 23:35:21 +0100 Subject: [PATCH] [dl:ytdl] support '_ytdl_params' --- gallery_dl/downloader/ytdl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/downloader/ytdl.py b/gallery_dl/downloader/ytdl.py index 0631614b..32fb7b9f 100644 --- a/gallery_dl/downloader/ytdl.py +++ b/gallery_dl/downloader/ytdl.py @@ -69,7 +69,7 @@ class YoutubeDLDownloader(DownloaderBase): self.log.debug("Using %s version %s", module, ytdl_version) self.ytdl_instance = ytdl_instance = ytdl.construct_YoutubeDL( - module, self, self.ytdl_opts) + module, self, self.ytdl_opts, kwdict.get("_ytdl_params")) if self.outtmpl == "default": self.outtmpl = module.DEFAULT_OUTTMPL self._prepare(ytdl_instance)