aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/snagfilms.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-06-27 18:25:50 +0600
committerSergey M․ <dstftw@gmail.com>2015-06-27 18:25:50 +0600
commit7c197ad96dd0f36177eda66777c93502228fc36b (patch)
treeae7931421901d9f2e24571385e1084b369afe845 /youtube_dl/extractor/snagfilms.py
parent654fd03c73fa0e4407a71c07d821b45321c3cdb8 (diff)
downloadyoutube-dl-7c197ad96dd0f36177eda66777c93502228fc36b.tar.xz
[snagfilms] Add routine for generic embeds extractions
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)