mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
[bilibili] Skip assertion if HQ videos not available
This commit is contained in:
parent
1434184c57
commit
b535170b21
@ -80,9 +80,11 @@ def _real_extract(self, url):
|
||||
note='Downloading HQ video info',
|
||||
fatal=False,
|
||||
)
|
||||
hq_durls = hq_doc.findall('./durl') if hq_doc is not False else itertools.repeat(None)
|
||||
|
||||
assert len(lq_durls) == len(hq_durls)
|
||||
if hq_doc is not False:
|
||||
hq_durls = hq_doc.findall('./durl')
|
||||
assert len(lq_durls) == len(hq_durls)
|
||||
else:
|
||||
hq_durls = itertools.repeat(None)
|
||||
|
||||
i = 1
|
||||
for lq_durl, hq_durl in zip(lq_durls, hq_durls):
|
||||
|
Loading…
Reference in New Issue
Block a user