diff --git a/youtube-dl-api/youtube_dl_api/__init__.py b/youtube-dl-api/youtube_dl_api/__init__.py index d8f4bb3..f518be8 100644 --- a/youtube-dl-api/youtube_dl_api/__init__.py +++ b/youtube-dl-api/youtube_dl_api/__init__.py @@ -22,7 +22,7 @@ def report_state(id: str): def load_video(url: str, file_path: str, id: str): try: opts = { - "format": 'best[filesize<=50M][ext=mp4]/best[height<=480][ext=mp4]/best[ext=mp4]', + "format": 'best[height<=480][ext=mp4]/best[ext=mp4]', "quiet": True, "outtmpl": file_path, "progress_hooks": [report_state(id)]