speedup by only testing selected formats

This commit is contained in:
simon 2021-11-27 14:13:48 +07:00
parent 5401722d88
commit d95bf4272c
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
2 changed files with 5 additions and 4 deletions

View File

@ -140,9 +140,10 @@ class PendingList:
obs = {
"default_search": "ytsearch",
"quiet": True,
"skip_download": True,
"check_formats": True,
"check_formats": "selected",
"noplaylist": True,
"writethumbnail": True,
"simulate": True,
}
try:
vid = youtube_dl.YoutubeDL(obs).extract_info(youtube_id)
@ -617,7 +618,7 @@ class VideoDownloader:
"retries": 3,
"writethumbnail": False,
"noplaylist": True,
"check_formats": True,
"check_formats": "selected",
}
if self.config["downloads"]["format"]:
obs["format"] = self.config["downloads"]["format"]

View File

@ -311,7 +311,7 @@ class YoutubeVideo:
"quiet": True,
"default_search": "ytsearch",
"skip_download": True,
"check_formats": True,
"check_formats": "selected",
"noplaylist": True,
}
try: