9bdbdc3e468cec6ae0fb1e36e33332a494e4230d
[youtube-dl] / youtube_dl / extractor / viki.py
1 from __future__ import unicode_literals
2
3 import re
4
5 from ..compat import (
6     compat_urlparse,
7     compat_urllib_request,
8 )
9 from ..utils import (
10     ExtractorError,
11     unescapeHTML,
12     unified_strdate,
13     US_RATINGS,
14     determine_ext,
15     mimetype2ext,
16 )
17 from .common import InfoExtractor
18
19
20 class VikiIE(InfoExtractor):
21     IE_NAME = 'viki'
22
23     # iPad2
24     _USER_AGENT = 'Mozilla/5.0(iPad; U; CPU OS 4_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8F191 Safari/6533.18.5'
25
26     _VALID_URL = r'^https?://(?:www\.)?viki\.com/videos/(?P<id>[0-9]+v)'
27     _TESTS = [{
28         'url': 'http://www.viki.com/videos/1023585v-heirs-episode-14',
29         'info_dict': {
30             'id': '1023585v',
31             'ext': 'mp4',
32             'title': 'Heirs Episode 14',
33             'uploader': 'SBS',
34             'description': 'md5:c4b17b9626dd4b143dcc4d855ba3474e',
35             'upload_date': '20131121',
36             'age_limit': 13,
37         },
38         'skip': 'Blocked in the US',
39     }, {
40         'url': 'http://www.viki.com/videos/1067139v-the-avengers-age-of-ultron-press-conference',
41         'md5': 'ca6493e6f0a6ec07da9aa8d6304b4b2c',
42         'info_dict': {
43             'id': '1067139v',
44             'ext': 'mp4',
45             'description': 'md5:d70b2f9428f5488321bfe1db10d612ea',
46             'upload_date': '20150430',
47             'title': '\'The Avengers: Age of Ultron\' Press Conference',
48         }
49     }, {
50         'url': 'http://www.viki.com/videos/1048879v-ankhon-dekhi',
51         'info_dict': {
52             'id': '1048879v',
53             'ext': 'mp4',
54             'upload_date': '20140820',
55             'description': 'md5:54ff56d51bdfc7a30441ec967394e91c',
56             'title': 'Ankhon Dekhi',
57         },
58         'params': {
59             # requires ffmpeg
60             'skip_download': True,
61         }
62     }]
63
64     def _real_extract(self, url):
65         video_id = self._match_id(url)
66
67         webpage = self._download_webpage(url, video_id)
68         title = self._og_search_title(webpage)
69         description = self._og_search_description(webpage)
70         thumbnail = self._og_search_thumbnail(webpage)
71
72         uploader_m = re.search(
73             r'<strong>Broadcast Network: </strong>\s*([^<]*)<', webpage)
74         if uploader_m is None:
75             uploader = None
76         else:
77             uploader = uploader_m.group(1).strip()
78
79         rating_str = self._html_search_regex(
80             r'<strong>Rating: </strong>\s*([^<]*)<', webpage,
81             'rating information', default='').strip()
82         age_limit = US_RATINGS.get(rating_str)
83
84         req = compat_urllib_request.Request(
85             'http://www.viki.com/player5_fragment/%s?action=show&controller=videos' % video_id)
86         req.add_header('User-Agent', self._USER_AGENT)
87         info_webpage = self._download_webpage(
88             req, video_id, note='Downloading info page')
89         err_msg = self._html_search_regex(r'<div[^>]+class="video-error[^>]+>(.+)</div>', info_webpage, 'error message', default=None)
90         if err_msg:
91             if 'not available in your region' in err_msg:
92                 raise ExtractorError(
93                     'Video %s is blocked from your location.' % video_id,
94                     expected=True)
95             else:
96                 raise ExtractorError('Viki said: %s %s' % (err_msg, url))
97         mobj = re.search(
98             r'<source[^>]+type="(?P<mime_type>[^"]+)"[^>]+src="(?P<url>[^"]+)"', info_webpage)
99         if not mobj:
100             raise ExtractorError('Unable to find video URL')
101         video_url = unescapeHTML(mobj.group('url'))
102         video_ext = mimetype2ext(mobj.group('mime_type'))
103
104         if determine_ext(video_url) == 'm3u8':
105             formats = self._extract_m3u8_formats(
106                 video_url, video_id, ext=video_ext)
107         else:
108             formats = [{
109                 'url': video_url,
110                 'ext': video_ext,
111             }]
112
113         upload_date_str = self._html_search_regex(
114             r'"created_at":"([^"]+)"', info_webpage, 'upload date')
115         upload_date = (
116             unified_strdate(upload_date_str)
117             if upload_date_str is not None
118             else None
119         )
120
121         # subtitles
122         video_subtitles = self.extract_subtitles(video_id, info_webpage)
123
124         return {
125             'id': video_id,
126             'title': title,
127             'formats': formats,
128             'description': description,
129             'thumbnail': thumbnail,
130             'age_limit': age_limit,
131             'uploader': uploader,
132             'subtitles': video_subtitles,
133             'upload_date': upload_date,
134         }
135
136     def _get_subtitles(self, video_id, info_webpage):
137         res = {}
138         for sturl_html in re.findall(r'<track src="([^"]+)"', info_webpage):
139             sturl = unescapeHTML(sturl_html)
140             m = re.search(r'/(?P<lang>[a-z]+)\.vtt', sturl)
141             if not m:
142                 continue
143             res[m.group('lang')] = [{
144                 'url': compat_urlparse.urljoin('http://www.viki.com', sturl),
145                 'ext': 'vtt',
146             }]
147         return res
148
149
150 class VikiChannelIE(InfoExtractor):
151     IE_NAME = 'viki:channel'
152     _VALID_URL = r'^https?://(?:www\.)?viki\.com/tv/(?P<id>[0-9]+c)'
153     _TESTS = [{
154         'url': 'http://www.viki.com/tv/50c-boys-over-flowers',
155         'info_dict': {
156             'id': '50c',
157             'title': 'Boys Over Flowers',
158             'description': 'md5:ecd3cff47967fe193cff37c0bec52790',
159         },
160         'playlist_count': 70,
161     }, {
162         'url': 'http://www.viki.com/tv/1354c-poor-nastya-complete',
163         'info_dict': {
164             'id': '1354c',
165             'title': 'Poor Nastya [COMPLETE]',
166             'description': 'md5:05bf5471385aa8b21c18ad450e350525',
167         },
168         'playlist_count': 127,
169     }]
170     _PER_PAGE = 25
171
172     def _real_extract(self, url):
173         show_id = self._match_id(url)
174         show_page = self._download_webpage(url, show_id, 'Download show page')
175
176         title = self._og_search_title(show_page)
177         description = self._og_search_description(show_page)
178
179         entries = []
180         for video_type in ['episodes', 'clips']:
181             json_url = 'http://api.viki.io/v4/containers/%s/%s.json?app=100000a&per_page=%d&sort=number&direction=asc&with_paging=true&page=1' % (show_id, video_type, self._PER_PAGE)
182             while json_url is not None:
183                 show_json = self._download_json(
184                     json_url, show_id,
185                     note='Downloading %s json page #%s' %
186                          (video_type, re.search(r'[?&]page=([0-9]+)', json_url).group(1)))
187                 for video in show_json['response']:
188                     video_id = video['id']
189                     entries.append(self.url_result(
190                         'http://www.viki.com/videos/%s' % video_id, 'Viki', video_id))
191                 json_url = show_json['pagination']['next']
192
193         return self.playlist_result(entries, show_id, title, description)