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