youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit d4f58034f7f3d959788d4fcf3812e24d3ba05f68
parent f843300fe56ffbfc8e3005fd0f7a8237e5deaaae
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 24 Jun 2015 23:16:33 +0600

[onionstudios] Add generic embed extraction routine

Diffstat:
Myoutube_dl/extractor/onionstudios.py | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git 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'<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)