hotfix: specify ejs:github remote component
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 3m8s
Build and Push Docker Image / deploy-on-green (push) Successful in 9s

This commit is contained in:
2025-11-11 22:11:43 -05:00
parent 709ccddf82
commit 2f47bbd848

View File

@@ -2,7 +2,9 @@ import yt_dlp
import asyncio
def get_formats(url: str):
ydl = yt_dlp.YoutubeDL()
ydl = yt_dlp.YoutubeDL(params={
'remote-components': 'ejs:github'
})
info = ydl.extract_info(url, download=False)
video_options = []