Update to ytdl-commit-ed5c44e7

[compat] Replace deficient ChainMap class in Py3.3 and earlier
ed5c44e7b7
This commit is contained in:
pukkandan 2022-09-01 16:23:18 +05:30
parent 05deb747bb
commit 1ac7f46184
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
4 changed files with 92 additions and 44 deletions

View file

@ -2528,9 +2528,6 @@ class YoutubeDL:
'--live-from-start is passed, but there are no formats that can be downloaded from the start. '
'If you want to download from the current time, use --no-live-from-start'))
if not formats:
self.raise_no_formats(info_dict)
def is_wellformed(f):
url = f.get('url')
if not url:
@ -2543,7 +2540,10 @@ class YoutubeDL:
return True
# Filter out malformed formats for better extraction robustness
formats = list(filter(is_wellformed, formats))
formats = list(filter(is_wellformed, formats or []))
if not formats:
self.raise_no_formats(info_dict)
formats_dict = {}