From: Sergey M․ Date: Sat, 27 Jun 2015 12:25:50 +0000 (+0600) Subject: [snagfilms] Add routine for generic embeds extractions X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=7c197ad96dd0f36177eda66777c93502228fc36b;p=youtube-dl [snagfilms] Add routine for generic embeds extractions --- diff --git a/youtube_dl/extractor/snagfilms.py b/youtube_dl/extractor/snagfilms.py index 6e103bd49..cb52eb72b 100644 --- a/youtube_dl/extractor/snagfilms.py +++ b/youtube_dl/extractor/snagfilms.py @@ -27,6 +27,13 @@ class SnagFilmsEmbedIE(InfoExtractor): 'only_matching': True, }] + @staticmethod + def _extract_url(webpage): + mobj = re.search( + r']+?src=(["\'])(?P(?:https?:)?//(?:embed\.)?snagfilms\.com/embed/player.+?)\1', webpage) + if mobj: + return mobj.group('url') + def _real_extract(self, url): video_id = self._match_id(url)