diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-04-19 04:08:29 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-04-19 04:08:29 +0600 |
commit | cc9b9df0b680da1cf610da57fbf397d8ebd75e74 (patch) | |
tree | e98f91eadabeb7e34401cf6fda180b5c6d7b0c72 /youtube_dl/extractor/megavideoz.py | |
parent | 31f224008e39b629d793a8fc3f8fafc7a4baf417 (diff) |
[megavideozeu] Rename extractor
Diffstat (limited to 'youtube_dl/extractor/megavideoz.py')
-rw-r--r-- | youtube_dl/extractor/megavideoz.py | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/youtube_dl/extractor/megavideoz.py b/youtube_dl/extractor/megavideoz.py new file mode 100644 index 000000000..d80f3633e --- /dev/null +++ b/youtube_dl/extractor/megavideoz.py @@ -0,0 +1,52 @@ +# encoding: utf-8 +from __future__ import unicode_literals + +import re + +from .common import InfoExtractor +from ..utils import ( + float_or_none, + xpath_text, +) + + +class MegaVideozIE(InfoExtractor): + _VALID_URL = r'https?://(?:www\.)?megavideoz\.eu/video/(?P<id>[^/]+)(?:/(?P<display_id>[^/]+))?' + _TEST = { + 'url': 'http://megavideoz.eu/video/WM6UB919XMXH/SMPTE-Universal-Film-Leader', + 'info_dict': { + 'id': '48723', + 'display_id': 'SMPTE-Universal-Film-Leader', + 'ext': 'mp4', + 'title': 'SMPTE Universal Film Leader', + 'thumbnail': 're:https?://.*?\.jpg', + 'duration': 10.93, + } + } + + def _real_extract(self, url): + mobj = re.match(self._VALID_URL, url) + video_id = mobj.group('id') + display_id = mobj.group('display_id') or video_id + + webpage = self._download_webpage(url, display_id) + + config = self._download_xml( + self._search_regex( + r"var\s+cnf\s*=\s*'([^']+)'", webpage, 'cnf url'), + display_id) + + video_url = xpath_text(config, './file', 'video url', fatal=True) + title = xpath_text(config, './title', 'title', fatal=True) + thumbnail = xpath_text(config, './image', 'thumbnail') + duration = float_or_none(xpath_text(config, './duration', 'duration')) + video_id = xpath_text(config, './mediaid', 'video id') or video_id + + return { + 'id': video_id, + 'display_id': display_id, + 'url': video_url, + 'title': title, + 'thumbnail': thumbnail, + 'duration': duration + } |