aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/vidzi.py
blob: 82d2179e9a72d2527aacda2b781881b1e8fdcc1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from __future__ import unicode_literals

from .common import InfoExtractor


class VidziIE(InfoExtractor):
    _VALID_URL = r'https?://(?:www\.)?vidzi\.tv/(?P<id>\w+)'
    _TEST = {
        'url': 'http://vidzi.tv/m1chxrwq7bx9',
        'md5': '5c4c4a8ca2281a199c8eefe8f411d630',
        'info_dict': {
            'id': 'm1chxrwq7bx9',
            'ext': 'mp4',
            'title': 'Watch Cadbury Dream Factory S01E04 HDTV x264 FiHTV mp4',
        },
    }

    def _real_extract(self, url):
        video_id = self._match_id(url)
        
        webpage = self._download_webpage(url, video_id)
        video_url = self._html_search_regex(
            r'{\s*file\s*:\s*"([^"]+)"\s*}', webpage, 'video url')
        title = self._html_search_regex(
            r'<Title>([^<]+)<\/Title>', webpage, 'title')
        
        return {
            'id': video_id,
            'title': title,
            'url': video_url,
            'ext': 'mp4',
        }