speedup by only testing selected formats

pull/106/head
simon 3 years ago
parent 5401722d88
commit d95bf4272c
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -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"]

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

Loading…
Cancel
Save