[youtube] fix hd720 format position
[youtube-dl] / youtube_dl / extractor / dailymotion.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5 import json
6 import itertools
7
8 from .common import InfoExtractor
9
10 from ..utils import (
11     determine_ext,
12     error_to_compat_str,
13     ExtractorError,
14     int_or_none,
15     parse_iso8601,
16     sanitized_Request,
17     str_to_int,
18     unescapeHTML,
19     mimetype2ext,
20 )
21
22
23 class DailymotionBaseInfoExtractor(InfoExtractor):
24     @staticmethod
25     def _build_request(url):
26         """Build a request with the family filter disabled"""
27         request = sanitized_Request(url)
28         request.add_header('Cookie', 'family_filter=off; ff=off')
29         return request
30
31     def _download_webpage_handle_no_ff(self, url, *args, **kwargs):
32         request = self._build_request(url)
33         return self._download_webpage_handle(request, *args, **kwargs)
34
35     def _download_webpage_no_ff(self, url, *args, **kwargs):
36         request = self._build_request(url)
37         return self._download_webpage(request, *args, **kwargs)
38
39
40 class DailymotionIE(DailymotionBaseInfoExtractor):
41     _VALID_URL = r'(?i)https?://(?:(www|touch)\.)?dailymotion\.[a-z]{2,3}/(?:(?:(?:embed|swf|#)/)?video|swf)/(?P<id>[^/?_]+)'
42     IE_NAME = 'dailymotion'
43
44     _FORMATS = [
45         ('stream_h264_ld_url', 'ld'),
46         ('stream_h264_url', 'standard'),
47         ('stream_h264_hq_url', 'hq'),
48         ('stream_h264_hd_url', 'hd'),
49         ('stream_h264_hd1080_url', 'hd180'),
50     ]
51
52     _TESTS = [{
53         'url': 'http://www.dailymotion.com/video/x5kesuj_office-christmas-party-review-jason-bateman-olivia-munn-t-j-miller_news',
54         'md5': '074b95bdee76b9e3654137aee9c79dfe',
55         'info_dict': {
56             'id': 'x5kesuj',
57             'ext': 'mp4',
58             'title': 'Office Christmas Party Review –  Jason Bateman, Olivia Munn, T.J. Miller',
59             'description': 'Office Christmas Party Review -  Jason Bateman, Olivia Munn, T.J. Miller',
60             'thumbnail': r're:^https?:.*\.(?:jpg|png)$',
61             'duration': 187,
62             'timestamp': 1493651285,
63             'upload_date': '20170501',
64             'uploader': 'Deadline',
65             'uploader_id': 'x1xm8ri',
66             'age_limit': 0,
67             'view_count': int,
68         },
69     }, {
70         'url': 'https://www.dailymotion.com/video/x2iuewm_steam-machine-models-pricing-listed-on-steam-store-ign-news_videogames',
71         'md5': '2137c41a8e78554bb09225b8eb322406',
72         'info_dict': {
73             'id': 'x2iuewm',
74             'ext': 'mp4',
75             'title': 'Steam Machine Models, Pricing Listed on Steam Store - IGN News',
76             'description': 'Several come bundled with the Steam Controller.',
77             'thumbnail': r're:^https?:.*\.(?:jpg|png)$',
78             'duration': 74,
79             'timestamp': 1425657362,
80             'upload_date': '20150306',
81             'uploader': 'IGN',
82             'uploader_id': 'xijv66',
83             'age_limit': 0,
84             'view_count': int,
85         },
86         'skip': 'video gone',
87     }, {
88         # Vevo video
89         'url': 'http://www.dailymotion.com/video/x149uew_katy-perry-roar-official_musi',
90         'info_dict': {
91             'title': 'Roar (Official)',
92             'id': 'USUV71301934',
93             'ext': 'mp4',
94             'uploader': 'Katy Perry',
95             'upload_date': '20130905',
96         },
97         'params': {
98             'skip_download': True,
99         },
100         'skip': 'VEVO is only available in some countries',
101     }, {
102         # age-restricted video
103         'url': 'http://www.dailymotion.com/video/xyh2zz_leanna-decker-cyber-girl-of-the-year-desires-nude-playboy-plus_redband',
104         'md5': '0d667a7b9cebecc3c89ee93099c4159d',
105         'info_dict': {
106             'id': 'xyh2zz',
107             'ext': 'mp4',
108             'title': 'Leanna Decker - Cyber Girl Of The Year Desires Nude [Playboy Plus]',
109             'uploader': 'HotWaves1012',
110             'age_limit': 18,
111         },
112         'skip': 'video gone',
113     }, {
114         # geo-restricted, player v5
115         'url': 'http://www.dailymotion.com/video/xhza0o',
116         'only_matching': True,
117     }, {
118         # with subtitles
119         'url': 'http://www.dailymotion.com/video/x20su5f_the-power-of-nightmares-1-the-rise-of-the-politics-of-fear-bbc-2004_news',
120         'only_matching': True,
121     }, {
122         'url': 'http://www.dailymotion.com/swf/video/x3n92nf',
123         'only_matching': True,
124     }, {
125         'url': 'http://www.dailymotion.com/swf/x3ss1m_funny-magic-trick-barry-and-stuart_fun',
126         'only_matching': True,
127     }]
128
129     @staticmethod
130     def _extract_urls(webpage):
131         # Look for embedded Dailymotion player
132         matches = re.findall(
133             r'<(?:(?:embed|iframe)[^>]+?src=|input[^>]+id=[\'"]dmcloudUrlEmissionSelect[\'"][^>]+value=)(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/(?:embed|swf)/video/.+?)\1', webpage)
134         return list(map(lambda m: unescapeHTML(m[1]), matches))
135
136     def _real_extract(self, url):
137         video_id = self._match_id(url)
138
139         webpage = self._download_webpage_no_ff(
140             'https://www.dailymotion.com/video/%s' % video_id, video_id)
141
142         age_limit = self._rta_search(webpage)
143
144         description = self._og_search_description(webpage) or self._html_search_meta(
145             'description', webpage, 'description')
146
147         view_count_str = self._search_regex(
148             (r'<meta[^>]+itemprop="interactionCount"[^>]+content="UserPlays:([\s\d,.]+)"',
149              r'video_views_count[^>]+>\s+([\s\d\,.]+)'),
150             webpage, 'view count', default=None)
151         if view_count_str:
152             view_count_str = re.sub(r'\s', '', view_count_str)
153         view_count = str_to_int(view_count_str)
154         comment_count = int_or_none(self._search_regex(
155             r'<meta[^>]+itemprop="interactionCount"[^>]+content="UserComments:(\d+)"',
156             webpage, 'comment count', default=None))
157
158         player_v5 = self._search_regex(
159             [r'buildPlayer\(({.+?})\);\n',  # See https://github.com/rg3/youtube-dl/issues/7826
160              r'playerV5\s*=\s*dmp\.create\([^,]+?,\s*({.+?})\);',
161              r'buildPlayer\(({.+?})\);',
162              r'var\s+config\s*=\s*({.+?});',
163              # New layout regex (see https://github.com/rg3/youtube-dl/issues/13580)
164              r'__PLAYER_CONFIG__\s*=\s*({.+?});'],
165             webpage, 'player v5', default=None)
166         if player_v5:
167             player = self._parse_json(player_v5, video_id)
168             metadata = player['metadata']
169
170             self._check_error(metadata)
171
172             formats = []
173             for quality, media_list in metadata['qualities'].items():
174                 for media in media_list:
175                     media_url = media.get('url')
176                     if not media_url:
177                         continue
178                     type_ = media.get('type')
179                     if type_ == 'application/vnd.lumberjack.manifest':
180                         continue
181                     ext = mimetype2ext(type_) or determine_ext(media_url)
182                     if ext == 'm3u8':
183                         m3u8_formats = self._extract_m3u8_formats(
184                             media_url, video_id, 'mp4', preference=-1,
185                             m3u8_id='hls', fatal=False)
186                         for f in m3u8_formats:
187                             f['url'] = f['url'].split('#')[0]
188                             formats.append(f)
189                     elif ext == 'f4m':
190                         formats.extend(self._extract_f4m_formats(
191                             media_url, video_id, preference=-1, f4m_id='hds', fatal=False))
192                     else:
193                         f = {
194                             'url': media_url,
195                             'format_id': 'http-%s' % quality,
196                             'ext': ext,
197                         }
198                         m = re.search(r'H264-(?P<width>\d+)x(?P<height>\d+)', media_url)
199                         if m:
200                             f.update({
201                                 'width': int(m.group('width')),
202                                 'height': int(m.group('height')),
203                             })
204                         formats.append(f)
205             self._sort_formats(formats)
206
207             title = metadata['title']
208             duration = int_or_none(metadata.get('duration'))
209             timestamp = int_or_none(metadata.get('created_time'))
210             thumbnail = metadata.get('poster_url')
211             uploader = metadata.get('owner', {}).get('screenname')
212             uploader_id = metadata.get('owner', {}).get('id')
213
214             subtitles = {}
215             subtitles_data = metadata.get('subtitles', {}).get('data', {})
216             if subtitles_data and isinstance(subtitles_data, dict):
217                 for subtitle_lang, subtitle in subtitles_data.items():
218                     subtitles[subtitle_lang] = [{
219                         'ext': determine_ext(subtitle_url),
220                         'url': subtitle_url,
221                     } for subtitle_url in subtitle.get('urls', [])]
222
223             return {
224                 'id': video_id,
225                 'title': title,
226                 'description': description,
227                 'thumbnail': thumbnail,
228                 'duration': duration,
229                 'timestamp': timestamp,
230                 'uploader': uploader,
231                 'uploader_id': uploader_id,
232                 'age_limit': age_limit,
233                 'view_count': view_count,
234                 'comment_count': comment_count,
235                 'formats': formats,
236                 'subtitles': subtitles,
237             }
238
239         # vevo embed
240         vevo_id = self._search_regex(
241             r'<link rel="video_src" href="[^"]*?vevo\.com[^"]*?video=(?P<id>[\w]*)',
242             webpage, 'vevo embed', default=None)
243         if vevo_id:
244             return self.url_result('vevo:%s' % vevo_id, 'Vevo')
245
246         # fallback old player
247         embed_page = self._download_webpage_no_ff(
248             'https://www.dailymotion.com/embed/video/%s' % video_id,
249             video_id, 'Downloading embed page')
250
251         timestamp = parse_iso8601(self._html_search_meta(
252             'video:release_date', webpage, 'upload date'))
253
254         info = self._parse_json(
255             self._search_regex(
256                 r'var info = ({.*?}),$', embed_page,
257                 'video info', flags=re.MULTILINE),
258             video_id)
259
260         self._check_error(info)
261
262         formats = []
263         for (key, format_id) in self._FORMATS:
264             video_url = info.get(key)
265             if video_url is not None:
266                 m_size = re.search(r'H264-(\d+)x(\d+)', video_url)
267                 if m_size is not None:
268                     width, height = map(int_or_none, (m_size.group(1), m_size.group(2)))
269                 else:
270                     width, height = None, None
271                 formats.append({
272                     'url': video_url,
273                     'ext': 'mp4',
274                     'format_id': format_id,
275                     'width': width,
276                     'height': height,
277                 })
278         self._sort_formats(formats)
279
280         # subtitles
281         video_subtitles = self.extract_subtitles(video_id, webpage)
282
283         title = self._og_search_title(webpage, default=None)
284         if title is None:
285             title = self._html_search_regex(
286                 r'(?s)<span\s+id="video_title"[^>]*>(.*?)</span>', webpage,
287                 'title')
288
289         return {
290             'id': video_id,
291             'formats': formats,
292             'uploader': info['owner.screenname'],
293             'timestamp': timestamp,
294             'title': title,
295             'description': description,
296             'subtitles': video_subtitles,
297             'thumbnail': info['thumbnail_url'],
298             'age_limit': age_limit,
299             'view_count': view_count,
300             'duration': info['duration']
301         }
302
303     def _check_error(self, info):
304         error = info.get('error')
305         if info.get('error') is not None:
306             title = error['title']
307             # See https://developer.dailymotion.com/api#access-error
308             if error.get('code') == 'DM007':
309                 self.raise_geo_restricted(msg=title)
310             raise ExtractorError(
311                 '%s said: %s' % (self.IE_NAME, title), expected=True)
312
313     def _get_subtitles(self, video_id, webpage):
314         try:
315             sub_list = self._download_webpage(
316                 'https://api.dailymotion.com/video/%s/subtitles?fields=id,language,url' % video_id,
317                 video_id, note=False)
318         except ExtractorError as err:
319             self._downloader.report_warning('unable to download video subtitles: %s' % error_to_compat_str(err))
320             return {}
321         info = json.loads(sub_list)
322         if (info['total'] > 0):
323             sub_lang_list = dict((l['language'], [{'url': l['url'], 'ext': 'srt'}]) for l in info['list'])
324             return sub_lang_list
325         self._downloader.report_warning('video doesn\'t have subtitles')
326         return {}
327
328
329 class DailymotionPlaylistIE(DailymotionBaseInfoExtractor):
330     IE_NAME = 'dailymotion:playlist'
331     _VALID_URL = r'(?:https?://)?(?:www\.)?dailymotion\.[a-z]{2,3}/playlist/(?P<id>[^/?#&]+)'
332     _MORE_PAGES_INDICATOR = r'(?s)<div class="pages[^"]*">.*?<a\s+class="[^"]*?icon-arrow_right[^"]*?"'
333     _PAGE_TEMPLATE = 'https://www.dailymotion.com/playlist/%s/%s'
334     _TESTS = [{
335         'url': 'http://www.dailymotion.com/playlist/xv4bw_nqtv_sport/1#video=xl8v3q',
336         'info_dict': {
337             'title': 'SPORT',
338             'id': 'xv4bw_nqtv_sport',
339         },
340         'playlist_mincount': 20,
341     }]
342
343     def _extract_entries(self, id):
344         video_ids = set()
345         processed_urls = set()
346         for pagenum in itertools.count(1):
347             page_url = self._PAGE_TEMPLATE % (id, pagenum)
348             webpage, urlh = self._download_webpage_handle_no_ff(
349                 page_url, id, 'Downloading page %s' % pagenum)
350             if urlh.geturl() in processed_urls:
351                 self.report_warning('Stopped at duplicated page %s, which is the same as %s' % (
352                     page_url, urlh.geturl()), id)
353                 break
354
355             processed_urls.add(urlh.geturl())
356
357             for video_id in re.findall(r'data-xid="(.+?)"', webpage):
358                 if video_id not in video_ids:
359                     yield self.url_result(
360                         'http://www.dailymotion.com/video/%s' % video_id,
361                         DailymotionIE.ie_key(), video_id)
362                     video_ids.add(video_id)
363
364             if re.search(self._MORE_PAGES_INDICATOR, webpage) is None:
365                 break
366
367     def _real_extract(self, url):
368         mobj = re.match(self._VALID_URL, url)
369         playlist_id = mobj.group('id')
370         webpage = self._download_webpage(url, playlist_id)
371
372         return {
373             '_type': 'playlist',
374             'id': playlist_id,
375             'title': self._og_search_title(webpage),
376             'entries': self._extract_entries(playlist_id),
377         }
378
379
380 class DailymotionUserIE(DailymotionPlaylistIE):
381     IE_NAME = 'dailymotion:user'
382     _VALID_URL = r'https?://(?:www\.)?dailymotion\.[a-z]{2,3}/(?!(?:embed|swf|#|video|playlist)/)(?:(?:old/)?user/)?(?P<user>[^/]+)'
383     _PAGE_TEMPLATE = 'http://www.dailymotion.com/user/%s/%s'
384     _TESTS = [{
385         'url': 'https://www.dailymotion.com/user/nqtv',
386         'info_dict': {
387             'id': 'nqtv',
388             'title': 'Rémi Gaillard',
389         },
390         'playlist_mincount': 100,
391     }, {
392         'url': 'http://www.dailymotion.com/user/UnderProject',
393         'info_dict': {
394             'id': 'UnderProject',
395             'title': 'UnderProject',
396         },
397         'playlist_mincount': 1800,
398         'expected_warnings': [
399             'Stopped at duplicated page',
400         ],
401         'skip': 'Takes too long time',
402     }]
403
404     def _real_extract(self, url):
405         mobj = re.match(self._VALID_URL, url)
406         user = mobj.group('user')
407         webpage = self._download_webpage(
408             'https://www.dailymotion.com/user/%s' % user, user)
409         full_user = unescapeHTML(self._html_search_regex(
410             r'<a class="nav-image" title="([^"]+)" href="/%s">' % re.escape(user),
411             webpage, 'user'))
412
413         return {
414             '_type': 'playlist',
415             'id': user,
416             'title': full_user,
417             'entries': self._extract_entries(user),
418         }