[extractor/generic] Add support for mediaset embeds

This commit is contained in:
Sergey M․
2017-05-14 06:29:16 +07:00
parent ca04de463d
commit 5d29af3d15
2 changed files with 15 additions and 0 deletions

View File

@@ -59,6 +59,14 @@ class MediasetIE(InfoExtractor):
'only_matching': True,
}]
@staticmethod
def _extract_urls(webpage):
return [
mobj.group('url')
for mobj in re.finditer(
r'<iframe\b[^>]+\bsrc=(["\'])(?P<url>https?://(?:www\.)?video\.mediaset\.it/player/playerIFrame(?:Twitter)?\.shtml\?.*?\bid=\d+.*?)\1',
webpage)]
def _real_extract(self, url):
video_id = self._match_id(url)