diff options
| author | Sergey M․ <dstftw@gmail.com> | 2014-08-06 20:38:27 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2014-08-06 20:38:27 +0700 | 
| commit | 0adc996bc3377a6664c92a30e61d69fb593e211f (patch) | |
| tree | 8e0c2d810123c4dba8f8e99adc77385fedf659c8 /youtube_dl/extractor/mojvideo.py | |
| parent | f87b3500c5afa5d425c52858ad64b1349a0d2ad9 (diff) | |
| parent | b42a2a720bb7f1bba0bd8bf326b34e2bcc7a98e0 (diff) | |
Merge branch 'DavidFabijan-mojvideo'
Diffstat (limited to 'youtube_dl/extractor/mojvideo.py')
| -rw-r--r-- | youtube_dl/extractor/mojvideo.py | 58 | 
1 files changed, 58 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/mojvideo.py b/youtube_dl/extractor/mojvideo.py new file mode 100644 index 000000000..90b460d65 --- /dev/null +++ b/youtube_dl/extractor/mojvideo.py @@ -0,0 +1,58 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import re + +from .common import InfoExtractor +from ..utils import ( +    ExtractorError, +    parse_duration, +) + + +class MojvideoIE(InfoExtractor): +    _VALID_URL = r'https?://(?:www\.)?mojvideo\.com/video-(?P<display_id>[^/]+)/(?P<id>[a-f0-9]+)' +    _TEST = { +        'url': 'http://www.mojvideo.com/video-v-avtu-pred-mano-rdecelaska-alfi-nipic/3d1ed4497707730b2906', +        'md5': 'f7fd662cc8ce2be107b0d4f2c0483ae7', +        'info_dict': { +            'id': '3d1ed4497707730b2906', +            'display_id': 'v-avtu-pred-mano-rdecelaska-alfi-nipic', +            'ext': 'mp4', +            'title': 'V avtu pred mano rdečelaska - Alfi Nipič', +            'thumbnail': 're:^http://.*\.jpg$', +            'duration': 242, +        } +    } + +    def _real_extract(self, url): +        mobj = re.match(self._VALID_URL, url) +        video_id = mobj.group('id') +        display_id = mobj.group('display_id') + +        # XML is malformed +        playerapi = self._download_webpage( +            'http://www.mojvideo.com/playerapi.php?v=%s&t=1' % video_id, display_id) + +        if '<error>true</error>' in playerapi: +            error_desc = self._html_search_regex( +                r'<errordesc>([^<]*)</errordesc>', playerapi, 'error description', fatal=False) +            raise ExtractorError('%s said: %s' % (self.IE_NAME, error_desc), expected=True) + +        title = self._html_search_regex( +            r'<title>([^<]+)</title>', playerapi, 'title') +        video_url = self._html_search_regex( +            r'<file>([^<]+)</file>', playerapi, 'video URL') +        thumbnail = self._html_search_regex( +            r'<preview>([^<]+)</preview>', playerapi, 'thumbnail', fatal=False) +        duration = parse_duration(self._html_search_regex( +            r'<duration>([^<]+)</duration>', playerapi, 'duration', fatal=False)) + +        return { +            'id': video_id, +            'display_id': display_id, +            'url': video_url, +            'title': title, +            'thumbnail': thumbnail, +            'duration': duration, +        }
\ No newline at end of file | 
