mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-08 14:07:05 +01:00
[ir90tv] Optional fields should be non-fatal
This commit is contained in:
parent
7523647391
commit
2c7c721933
@ -31,7 +31,7 @@ def _real_extract(self, url):
|
|||||||
video_url = self._search_regex(
|
video_url = self._search_regex(
|
||||||
r'<source[^>]+src="([^"]+)"', webpage, 'video url')
|
r'<source[^>]+src="([^"]+)"', webpage, 'video url')
|
||||||
|
|
||||||
thumbnail = self._search_regex(r'poster="([^"]+)"', webpage, 'thumbnail url')
|
thumbnail = self._search_regex(r'poster="([^"]+)"', webpage, 'thumbnail url', fatal=False)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
|
Loading…
Reference in New Issue
Block a user