projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
654fd03
)
[snagfilms] Add routine for generic embeds extractions
author
Sergey M․
<dstftw@gmail.com>
Sat, 27 Jun 2015 12:25:50 +0000
(18:25 +0600)
committer
Sergey M․
<dstftw@gmail.com>
Sat, 27 Jun 2015 12:25:50 +0000
(18:25 +0600)
youtube_dl/extractor/snagfilms.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/snagfilms.py
b/youtube_dl/extractor/snagfilms.py
index 6e103bd497cbb735f9a334631d76d66e322034da..cb52eb72b98040951ce1127e4739e7ee9e116cb5 100644
(file)
--- 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)