1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-11-05 02:32:44 +01:00

[onionstudios] Add generic embed extraction routine

This commit is contained in:
Sergey M․ 2015-06-24 23:16:33 +06:00
parent f843300fe5
commit d4f58034f7

View File

@ -27,6 +27,13 @@ class OnionStudiosIE(InfoExtractor):
'only_matching': True,
}]
@staticmethod
def _extract_url(webpage):
mobj = re.search(
r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?onionstudios\.com/embed.+?)\1', webpage)
if mobj:
return mobj.group('url')
def _real_extract(self, url):
video_id = self._match_id(url)