[ie/mediastream] Make embed extraction non-fatal

Authored by: bashonly
pull/8128/head
bashonly 8 months ago
parent 5367585219
commit 635ae31f68
No known key found for this signature in database
GPG Key ID: 783F096F253D15B0

@ -14,7 +14,7 @@ class MediaStreamBaseIE(InfoExtractor):
_BASE_URL_RE = r'https?://mdstrm\.com/(?:embed|live-stream)'
def _extract_mediastream_urls(self, webpage):
yield from traverse_obj(list(self._yield_json_ld(webpage, None)), (
yield from traverse_obj(list(self._yield_json_ld(webpage, None, fatal=False)), (
lambda _, v: v['@type'] == 'VideoObject', ('embedUrl', 'contentUrl'),
{lambda x: x if re.match(rf'{self._BASE_URL_RE}/\w+', x) else None}))

Loading…
Cancel
Save