From 236ef0dcda7f38cd7217c5678f14fa43527c73bd Mon Sep 17 00:00:00 2001 From: williamp Date: Mon, 29 Sep 2025 16:46:15 +0000 Subject: [PATCH] revert feb99c0dc105d1c41a43d23095f14b716339fc82 revert add args due to new update --- app/ytdlp.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/app/ytdlp.py b/app/ytdlp.py index f996256..f048f18 100644 --- a/app/ytdlp.py +++ b/app/ytdlp.py @@ -55,12 +55,7 @@ def download_video(url: str, format: str, out_path: str, temp_path: str, progres opts = { 'format': format, 'paths': {'home': out_path, 'temp': temp_path}, - 'progress_hooks': [hook], - 'extractor_args': { - 'youtube': { - 'player_client': ['default', '-tv_simply'], - } - } + 'progress_hooks': [hook] } with yt_dlp.YoutubeDL(opts) as ydl: ydl.download([url])