From e124ea31de31dab0cefc38fa7333fc5cc428a5b9 Mon Sep 17 00:00:00 2001 From: William P Date: Tue, 11 Nov 2025 22:21:49 -0500 Subject: [PATCH] aaaaaargh, _ instead of - --- app/ytdlp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ytdlp.py b/app/ytdlp.py index 5783b7b..c07b4a6 100644 --- a/app/ytdlp.py +++ b/app/ytdlp.py @@ -3,7 +3,7 @@ import asyncio def get_formats(url: str): ydl = yt_dlp.YoutubeDL(params={ - 'remote-components': 'ejs:github' + 'remote_components': 'ejs:github' }) info = ydl.extract_info(url, download=False)