aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/snagfilms.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/snagfilms.py')
-rw-r--r--youtube_dl/extractor/snagfilms.py7
1 files changed, 7 insertions, 0 deletions
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'<iframe[^>]+?src=(["\'])(?P<url>(?: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)