From 7c197ad96dd0f36177eda66777c93502228fc36b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergey=20M=E2=80=A4?= Date: Sat, 27 Jun 2015 18:25:50 +0600 Subject: [PATCH] [snagfilms] Add routine for generic embeds extractions --- youtube_dl/extractor/snagfilms.py | 7 +++++++ 1 file changed, 7 insertions(+) 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)