Browse Source

[snagfilms] Add routine for generic embeds extractions

totalwebcasting
Sergey M․ 9 years ago
parent
commit
7c197ad96d
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      youtube_dl/extractor/snagfilms.py

+ 7
- 0
youtube_dl/extractor/snagfilms.py View File

@ -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)


Loading…
Cancel
Save