From d4f58034f7f3d959788d4fcf3812e24d3ba05f68 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sergey=20M=E2=80=A4?= Date: Wed, 24 Jun 2015 23:16:33 +0600 Subject: [PATCH] [onionstudios] Add generic embed extraction routine --- youtube_dl/extractor/onionstudios.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/youtube_dl/extractor/onionstudios.py b/youtube_dl/extractor/onionstudios.py index d5d03fd44..8fa507dec 100644 --- a/youtube_dl/extractor/onionstudios.py +++ b/youtube_dl/extractor/onionstudios.py @@ -27,6 +27,13 @@ class OnionStudiosIE(InfoExtractor): 'only_matching': True, }] + @staticmethod + def _extract_url(webpage): + mobj = re.search( + r']+?src=(["\'])(?P(?:https?:)?//(?:www\.)?onionstudios\.com/embed.+?)\1', webpage) + if mobj: + return mobj.group('url') + def _real_extract(self, url): video_id = self._match_id(url) -- 2.30.2