[youtube] Ignore invalid stretch ratio

Closes #244
This commit is contained in:
pukkandan 2021-04-14 15:09:53 +05:30
parent 72e1fe969f
commit 46fff7105e
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
1 changed files with 4 additions and 2 deletions

View File

@ -2079,8 +2079,10 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
for m in re.finditer(self._meta_regex('og:video:tag'), webpage)]
for keyword in keywords:
if keyword.startswith('yt:stretch='):
w, h = keyword.split('=')[1].split(':')
w, h = int(w), int(h)
stretch_ratio = map(
lambda x: int_or_none(x, default=0),
keyword.split('=')[1].split(':'))
w, h = (list(stretch_ratio) + [0])[:2]
if w > 0 and h > 0:
ratio = w / h
for f in formats: