2 from __future__ import unicode_literals
8 from .common import InfoExtractor
33 class VimeoBaseInfoExtractor(InfoExtractor):
34 _NETRC_MACHINE = 'vimeo'
35 _LOGIN_REQUIRED = False
36 _LOGIN_URL = 'https://vimeo.com/log_in'
39 (username, password) = self._get_login_info()
41 if self._LOGIN_REQUIRED:
42 raise ExtractorError('No login info available, needed for using %s.' % self.IE_NAME, expected=True)
45 webpage = self._download_webpage(self._LOGIN_URL, None, False)
46 token, vuid = self._extract_xsrft_and_vuid(webpage)
47 data = urlencode_postdata({
54 login_request = sanitized_Request(self._LOGIN_URL, data)
55 login_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
56 login_request.add_header('Referer', self._LOGIN_URL)
57 self._set_vimeo_cookie('vuid', vuid)
58 self._download_webpage(login_request, None, False, 'Wrong login info')
60 def _verify_video_password(self, url, video_id, webpage):
61 password = self._downloader.params.get('videopassword')
63 raise ExtractorError('This video is protected by a password, use the --video-password option', expected=True)
64 token, vuid = self._extract_xsrft_and_vuid(webpage)
65 data = urlencode_postdata({
69 if url.startswith('http://'):
70 # vimeo only supports https now, but the user can give an http url
71 url = url.replace('http://', 'https://')
72 password_request = sanitized_Request(url + '/password', data)
73 password_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
74 password_request.add_header('Referer', url)
75 self._set_vimeo_cookie('vuid', vuid)
76 return self._download_webpage(
77 password_request, video_id,
78 'Verifying the password', 'Wrong password')
80 def _extract_xsrft_and_vuid(self, webpage):
81 xsrft = self._search_regex(
82 r'(?:(?P<q1>["\'])xsrft(?P=q1)\s*:|xsrft\s*[=:])\s*(?P<q>["\'])(?P<xsrft>.+?)(?P=q)',
83 webpage, 'login token', group='xsrft')
84 vuid = self._search_regex(
85 r'["\']vuid["\']\s*:\s*(["\'])(?P<vuid>.+?)\1',
86 webpage, 'vuid', group='vuid')
89 def _set_vimeo_cookie(self, name, value):
90 self._set_cookie('vimeo.com', name, value)
92 def _vimeo_sort_formats(self, formats):
93 # Bitrates are completely broken. Single m3u8 may contain entries in kbps and bps
94 # at the same time without actual units specified. This lead to wrong sorting.
95 self._sort_formats(formats, field_preference=('preference', 'height', 'width', 'fps', 'format_id'))
97 def _parse_config(self, config, video_id):
99 video_title = config['video']['title']
101 # Extract uploader, uploader_url and uploader_id
102 video_uploader = config['video'].get('owner', {}).get('name')
103 video_uploader_url = config['video'].get('owner', {}).get('url')
104 video_uploader_id = video_uploader_url.split('/')[-1] if video_uploader_url else None
106 # Extract video thumbnail
107 video_thumbnail = config['video'].get('thumbnail')
108 if video_thumbnail is None:
109 video_thumbs = config['video'].get('thumbs')
110 if video_thumbs and isinstance(video_thumbs, dict):
111 _, video_thumbnail = sorted((int(width if width.isdigit() else 0), t_url) for (width, t_url) in video_thumbs.items())[-1]
113 # Extract video duration
114 video_duration = int_or_none(config['video'].get('duration'))
117 config_files = config['video'].get('files') or config['request'].get('files', {})
118 for f in config_files.get('progressive', []):
119 video_url = f.get('url')
124 'format_id': 'http-%s' % f.get('quality'),
125 'width': int_or_none(f.get('width')),
126 'height': int_or_none(f.get('height')),
127 'fps': int_or_none(f.get('fps')),
128 'tbr': int_or_none(f.get('bitrate')),
130 m3u8_url = config_files.get('hls', {}).get('url')
132 formats.extend(self._extract_m3u8_formats(
133 m3u8_url, video_id, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False))
136 text_tracks = config['request'].get('text_tracks')
138 for tt in text_tracks:
139 subtitles[tt['lang']] = [{
141 'url': 'https://vimeo.com' + tt['url'],
145 'title': video_title,
146 'uploader': video_uploader,
147 'uploader_id': video_uploader_id,
148 'uploader_url': video_uploader_url,
149 'thumbnail': video_thumbnail,
150 'duration': video_duration,
152 'subtitles': subtitles,
156 class VimeoIE(VimeoBaseInfoExtractor):
157 """Information extractor for vimeo.com."""
159 # _VALID_URL matches Vimeo URLs
160 _VALID_URL = r'''(?x)
169 vimeo(?P<pro>pro)?\.com/
170 (?!(?:channels|album)/[^/?#]+/?(?:$|[?#])|[^/]+/review/|ondemand/)
175 moogaloop\.swf)\?clip_id=
180 /?(?:[?&].*)?(?:[#].*)?$
185 'url': 'http://vimeo.com/56015672#at=0',
186 'md5': '8879b6cc097e987f02484baf890129e5',
190 'title': "youtube-dl test video - \u2605 \" ' \u5e78 / \\ \u00e4 \u21ad \U0001d550",
191 'description': 'md5:2d3305bad981a06ff79f027f19865021',
192 'upload_date': '20121220',
193 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/user7108434',
194 'uploader_id': 'user7108434',
195 'uploader': 'Filippo Valsorda',
200 'url': 'http://vimeopro.com/openstreetmapus/state-of-the-map-us-2013/video/68093876',
201 'md5': '3b5ca6aa22b60dfeeadf50b72e44ed82',
202 'note': 'Vimeo Pro video (#1197)',
206 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/openstreetmapus',
207 'uploader_id': 'openstreetmapus',
208 'uploader': 'OpenStreetMap US',
209 'title': 'Andy Allan - Putting the Carto into OpenStreetMap Cartography',
210 'description': 'md5:fd69a7b8d8c34a4e1d2ec2e4afd6ec30',
215 'url': 'http://player.vimeo.com/video/54469442',
216 'md5': '619b811a4417aa4abe78dc653becf511',
217 'note': 'Videos that embed the url in the player page',
221 'title': 'Kathy Sierra: Building the minimum Badass User, Business of Software 2012',
222 'uploader': 'The BLN & Business of Software',
223 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/theblnbusinessofsoftware',
224 'uploader_id': 'theblnbusinessofsoftware',
230 'url': 'http://vimeo.com/68375962',
231 'md5': 'aaf896bdb7ddd6476df50007a0ac0ae7',
232 'note': 'Video protected with password',
236 'title': 'youtube-dl password protected test video',
237 'upload_date': '20130614',
238 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/user18948128',
239 'uploader_id': 'user18948128',
240 'uploader': 'Jaime Marquínez Ferrándiz',
242 'description': 'This is "youtube-dl password protected test video" by on Vimeo, the home for high quality videos and the people who love them.',
245 'videopassword': 'youtube-dl',
249 'url': 'http://vimeo.com/channels/keypeele/75629013',
250 'md5': '2f86a05afe9d7abc0b9126d229bbe15d',
254 'title': 'Key & Peele: Terrorist Interrogation',
255 'description': 'md5:8678b246399b070816b12313e8b4eb5c',
256 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/atencio',
257 'uploader_id': 'atencio',
258 'uploader': 'Peter Atencio',
259 'upload_date': '20130927',
264 'url': 'http://vimeo.com/76979871',
265 'note': 'Video with subtitles',
269 'title': 'The New Vimeo Player (You Know, For Videos)',
270 'description': 'md5:2ec900bf97c3f389378a96aee11260ea',
271 'upload_date': '20131015',
272 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/staff',
273 'uploader_id': 'staff',
274 'uploader': 'Vimeo Staff',
279 # from https://www.ouya.tv/game/Pier-Solar-and-the-Great-Architects/
280 'url': 'https://player.vimeo.com/video/98044508',
281 'note': 'The js code contains assignments to the same variable as the config',
285 'title': 'Pier Solar OUYA Official Trailer',
286 'uploader': 'Tulio Gonçalves',
287 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/user28849593',
288 'uploader_id': 'user28849593',
292 # contains original format
293 'url': 'https://vimeo.com/33951933',
294 'md5': '2d9f5475e0537f013d0073e812ab89e6',
298 'title': 'FOX CLASSICS - Forever Classic ID - A Full Minute',
299 'uploader': 'The DMCI',
300 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/dmci',
301 'uploader_id': 'dmci',
302 'upload_date': '20111220',
303 'description': 'md5:ae23671e82d05415868f7ad1aec21147',
307 # only available via https://vimeo.com/channels/tributes/6213729 and
308 # not via https://vimeo.com/6213729
309 'url': 'https://vimeo.com/channels/tributes/6213729',
313 'title': 'Vimeo Tribute: The Shining',
314 'uploader': 'Casey Donahue',
315 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/caseydonahue',
316 'uploader_id': 'caseydonahue',
317 'upload_date': '20090821',
318 'description': 'md5:bdbf314014e58713e6e5b66eb252f4a6',
321 'skip_download': True,
323 'expected_warnings': ['Unable to download JSON metadata'],
326 'url': 'http://vimeo.com/moogaloop.swf?clip_id=2539741',
327 'only_matching': True,
330 'url': 'https://vimeo.com/109815029',
331 'note': 'Video not completely processed, "failed" seed status',
332 'only_matching': True,
335 'url': 'https://vimeo.com/groups/travelhd/videos/22439234',
336 'only_matching': True,
339 'url': 'https://vimeo.com/album/2632481/video/79010983',
340 'only_matching': True,
343 # source file returns 403: Forbidden
344 'url': 'https://vimeo.com/7809605',
345 'only_matching': True,
348 'url': 'https://vimeo.com/160743502/abd0e13fb4',
349 'only_matching': True,
354 def _smuggle_referrer(url, referrer_url):
355 return smuggle_url(url, {'http_headers': {'Referer': referrer_url}})
358 def _extract_vimeo_url(url, webpage):
359 # Look for embedded (iframe) Vimeo player
361 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//player\.vimeo\.com/video/.+?)\1', webpage)
363 player_url = unescapeHTML(mobj.group('url'))
364 return VimeoIE._smuggle_referrer(player_url, url)
365 # Look for embedded (swf embed) Vimeo player
367 r'<embed[^>]+?src="((?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
370 # Look more for non-standard embedded Vimeo player
372 r'<video[^>]+src=(?P<q1>[\'"])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/[0-9]+)(?P=q1)', webpage)
374 return mobj.group('url')
376 def _verify_player_video_password(self, url, video_id):
377 password = self._downloader.params.get('videopassword')
379 raise ExtractorError('This video is protected by a password, use the --video-password option')
380 data = urlencode_postdata({'password': password})
381 pass_url = url + '/check-password'
382 password_request = sanitized_Request(pass_url, data)
383 password_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
384 password_request.add_header('Referer', url)
385 return self._download_json(
386 password_request, video_id,
387 'Verifying the password', 'Wrong password')
389 def _real_initialize(self):
392 def _real_extract(self, url):
393 url, data = unsmuggle_url(url, {})
394 headers = std_headers.copy()
395 if 'http_headers' in data:
396 headers.update(data['http_headers'])
397 if 'Referer' not in headers:
398 headers['Referer'] = url
400 # Extract ID from URL
401 mobj = re.match(self._VALID_URL, url)
402 video_id = mobj.group('id')
404 if mobj.group('pro') or mobj.group('player'):
405 url = 'https://player.vimeo.com/video/' + video_id
406 elif any(p in url for p in ('play_redirect_hls', 'moogaloop.swf')):
407 url = 'https://vimeo.com/' + video_id
409 # Retrieve video webpage to extract further information
410 request = sanitized_Request(url, headers=headers)
412 webpage = self._download_webpage(request, video_id)
413 except ExtractorError as ee:
414 if isinstance(ee.cause, compat_HTTPError) and ee.cause.code == 403:
415 errmsg = ee.cause.read()
416 if b'Because of its privacy settings, this video cannot be played here' in errmsg:
417 raise ExtractorError(
418 'Cannot download embed-only video without embedding '
419 'URL. Please call youtube-dl with the URL of the page '
420 'that embeds this video.',
424 # Now we begin extracting as much information as we can from what we
425 # retrieved. First we extract the information common to all extractors,
426 # and latter we extract those that are Vimeo specific.
427 self.report_extraction(video_id)
429 vimeo_config = self._search_regex(
430 r'vimeo\.config\s*=\s*(?:({.+?})|_extend\([^,]+,\s+({.+?})\));', webpage,
431 'vimeo config', default=None)
433 seed_status = self._parse_json(vimeo_config, video_id).get('seed_status', {})
434 if seed_status.get('state') == 'failed':
435 raise ExtractorError(
436 '%s said: %s' % (self.IE_NAME, seed_status['title']),
439 # Extract the config JSON
442 config_url = self._html_search_regex(
443 r' data-config-url="(.+?)"', webpage,
444 'config URL', default=None)
446 # Sometimes new react-based page is served instead of old one that require
447 # different config URL extraction approach (see
448 # https://github.com/rg3/youtube-dl/pull/7209)
449 vimeo_clip_page_config = self._search_regex(
450 r'vimeo\.clip_page_config\s*=\s*({.+?});', webpage,
451 'vimeo clip page config')
452 config_url = self._parse_json(
453 vimeo_clip_page_config, video_id)['player']['config_url']
454 config_json = self._download_webpage(config_url, video_id)
455 config = json.loads(config_json)
456 except RegexNotFoundError:
457 # For pro videos or player.vimeo.com urls
458 # We try to find out to which variable is assigned the config dic
459 m_variable_name = re.search('(\w)\.video\.id', webpage)
460 if m_variable_name is not None:
461 config_re = r'%s=({[^}].+?});' % re.escape(m_variable_name.group(1))
463 config_re = [r' = {config:({.+?}),assets:', r'(?:[abc])=({.+?});']
464 config = self._search_regex(config_re, webpage, 'info section',
466 config = json.loads(config)
467 except Exception as e:
468 if re.search('The creator of this video has not given you permission to embed it on this domain.', webpage):
469 raise ExtractorError('The author has restricted the access to this video, try with the "--referer" option')
471 if re.search(r'<form[^>]+?id="pw_form"', webpage) is not None:
472 if '_video_password_verified' in data:
473 raise ExtractorError('video password verification failed!')
474 self._verify_video_password(url, video_id, webpage)
475 return self._real_extract(
476 smuggle_url(url, {'_video_password_verified': 'verified'}))
478 raise ExtractorError('Unable to extract info section',
481 if config.get('view') == 4:
482 config = self._verify_player_video_password(url, video_id)
485 if '>You rented this title.<' in webpage:
487 if config.get('user', {}).get('purchased'):
490 config, lambda x: x['video']['vod']['purchase_options'][0]['label_string'], compat_str)
491 if label and label.startswith('You rented this'):
496 feature_id = config.get('video', {}).get('vod', {}).get('feature_id')
497 if feature_id and not data.get('force_feature_id', False):
498 return self.url_result(smuggle_url(
499 'https://player.vimeo.com/player/%s' % feature_id,
500 {'force_feature_id': True}), 'Vimeo')
502 # Extract video description
504 video_description = self._html_search_regex(
505 r'(?s)<div\s+class="[^"]*description[^"]*"[^>]*>(.*?)</div>',
506 webpage, 'description', default=None)
507 if not video_description:
508 video_description = self._html_search_meta(
509 'description', webpage, default=None)
510 if not video_description and mobj.group('pro'):
511 orig_webpage = self._download_webpage(
513 note='Downloading webpage for description',
516 video_description = self._html_search_meta(
517 'description', orig_webpage, default=None)
518 if not video_description and not mobj.group('player'):
519 self._downloader.report_warning('Cannot find video description')
521 # Extract upload date
522 video_upload_date = None
523 mobj = re.search(r'<time[^>]+datetime="([^"]+)"', webpage)
525 video_upload_date = unified_strdate(mobj.group(1))
528 view_count = int(self._search_regex(r'UserPlays:(\d+)', webpage, 'view count'))
529 like_count = int(self._search_regex(r'UserLikes:(\d+)', webpage, 'like count'))
530 comment_count = int(self._search_regex(r'UserComments:(\d+)', webpage, 'comment count'))
531 except RegexNotFoundError:
532 # This info is only available in vimeo.com/{id} urls
538 download_request = sanitized_Request('https://vimeo.com/%s?action=load_download_config' % video_id, headers={
539 'X-Requested-With': 'XMLHttpRequest'})
540 download_data = self._download_json(download_request, video_id, fatal=False)
542 source_file = download_data.get('source_file')
543 if isinstance(source_file, dict):
544 download_url = source_file.get('download_url')
545 if download_url and not source_file.get('is_cold') and not source_file.get('is_defrosting'):
546 source_name = source_file.get('public_name', 'Original')
547 if self._is_valid_url(download_url, video_id, '%s video' % source_name):
548 ext = source_file.get('extension', determine_ext(download_url)).lower()
552 'width': int_or_none(source_file.get('width')),
553 'height': int_or_none(source_file.get('height')),
554 'filesize': parse_filesize(source_file.get('size')),
555 'format_id': source_name,
559 info_dict = self._parse_config(config, video_id)
560 formats.extend(info_dict['formats'])
561 self._vimeo_sort_formats(formats)
565 'upload_date': video_upload_date,
566 'description': video_description,
568 'view_count': view_count,
569 'like_count': like_count,
570 'comment_count': comment_count,
576 class VimeoOndemandIE(VimeoBaseInfoExtractor):
577 IE_NAME = 'vimeo:ondemand'
578 _VALID_URL = r'https?://(?:www\.)?vimeo\.com/ondemand/(?P<id>[^/?#&]+)'
580 # ondemand video not available via https://vimeo.com/id
581 'url': 'https://vimeo.com/ondemand/20704',
582 'md5': 'c424deda8c7f73c1dfb3edd7630e2f35',
586 'title': 'המעבדה - במאי יותם פלדמן',
587 'uploader': 'גם סרטים',
588 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/gumfilms',
589 'uploader_id': 'gumfilms',
592 # requires Referer to be passed along with og:video:url
593 'url': 'https://vimeo.com/ondemand/36938/126682985',
597 'title': 'Rävlock, rätt läte på rätt plats',
598 'uploader': 'Lindroth & Norin',
599 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/user14430847',
600 'uploader_id': 'user14430847',
603 'skip_download': True,
606 'url': 'https://vimeo.com/ondemand/nazmaalik',
607 'only_matching': True,
609 'url': 'https://vimeo.com/ondemand/141692381',
610 'only_matching': True,
612 'url': 'https://vimeo.com/ondemand/thelastcolony/150274832',
613 'only_matching': True,
616 def _real_extract(self, url):
617 video_id = self._match_id(url)
618 webpage = self._download_webpage(url, video_id)
619 return self.url_result(
620 # Some videos require Referer to be passed along with og:video:url
621 # similarly to generic vimeo embeds (e.g.
622 # https://vimeo.com/ondemand/36938/126682985).
623 VimeoIE._smuggle_referrer(self._og_search_video_url(webpage), url),
627 class VimeoChannelIE(VimeoBaseInfoExtractor):
628 IE_NAME = 'vimeo:channel'
629 _VALID_URL = r'https://vimeo\.com/channels/(?P<id>[^/?#]+)/?(?:$|[?#])'
630 _MORE_PAGES_INDICATOR = r'<a.+?rel="next"'
632 _TITLE_RE = r'<link rel="alternate"[^>]+?title="(.*?)"'
634 'url': 'https://vimeo.com/channels/tributes',
637 'title': 'Vimeo Tributes',
639 'playlist_mincount': 25,
642 def _page_url(self, base_url, pagenum):
643 return '%s/videos/page:%d/' % (base_url, pagenum)
645 def _extract_list_title(self, webpage):
646 return self._TITLE or self._html_search_regex(self._TITLE_RE, webpage, 'list title')
648 def _login_list_password(self, page_url, list_id, webpage):
649 login_form = self._search_regex(
650 r'(?s)<form[^>]+?id="pw_form"(.*?)</form>',
651 webpage, 'login form', default=None)
655 password = self._downloader.params.get('videopassword')
657 raise ExtractorError('This album is protected by a password, use the --video-password option', expected=True)
658 fields = self._hidden_inputs(login_form)
659 token, vuid = self._extract_xsrft_and_vuid(webpage)
660 fields['token'] = token
661 fields['password'] = password
662 post = urlencode_postdata(fields)
663 password_path = self._search_regex(
664 r'action="([^"]+)"', login_form, 'password URL')
665 password_url = compat_urlparse.urljoin(page_url, password_path)
666 password_request = sanitized_Request(password_url, post)
667 password_request.add_header('Content-type', 'application/x-www-form-urlencoded')
668 self._set_vimeo_cookie('vuid', vuid)
669 self._set_vimeo_cookie('xsrft', token)
671 return self._download_webpage(
672 password_request, list_id,
673 'Verifying the password', 'Wrong password')
675 def _title_and_entries(self, list_id, base_url):
676 for pagenum in itertools.count(1):
677 page_url = self._page_url(base_url, pagenum)
678 webpage = self._download_webpage(
680 'Downloading page %s' % pagenum)
683 webpage = self._login_list_password(page_url, list_id, webpage)
684 yield self._extract_list_title(webpage)
686 # Try extracting href first since not all videos are available via
687 # short https://vimeo.com/id URL (e.g. https://vimeo.com/channels/tributes/6213729)
689 r'id="clip_(\d+)"[^>]*>\s*<a[^>]+href="(/(?:[^/]+/)*\1)', webpage)
691 for video_id, video_url in clips:
692 yield self.url_result(
693 compat_urlparse.urljoin(base_url, video_url),
694 VimeoIE.ie_key(), video_id=video_id)
695 # More relaxed fallback
697 for video_id in re.findall(r'id=["\']clip_(\d+)', webpage):
698 yield self.url_result(
699 'https://vimeo.com/%s' % video_id,
700 VimeoIE.ie_key(), video_id=video_id)
702 if re.search(self._MORE_PAGES_INDICATOR, webpage, re.DOTALL) is None:
705 def _extract_videos(self, list_id, base_url):
706 title_and_entries = self._title_and_entries(list_id, base_url)
707 list_title = next(title_and_entries)
708 return self.playlist_result(title_and_entries, list_id, list_title)
710 def _real_extract(self, url):
711 mobj = re.match(self._VALID_URL, url)
712 channel_id = mobj.group('id')
713 return self._extract_videos(channel_id, 'https://vimeo.com/channels/%s' % channel_id)
716 class VimeoUserIE(VimeoChannelIE):
717 IE_NAME = 'vimeo:user'
718 _VALID_URL = r'https://vimeo\.com/(?!(?:[0-9]+|watchlater)(?:$|[?#/]))(?P<name>[^/]+)(?:/videos|[#?]|$)'
719 _TITLE_RE = r'<a[^>]+?class="user">([^<>]+?)</a>'
721 'url': 'https://vimeo.com/nkistudio/videos',
726 'playlist_mincount': 66,
729 def _real_extract(self, url):
730 mobj = re.match(self._VALID_URL, url)
731 name = mobj.group('name')
732 return self._extract_videos(name, 'https://vimeo.com/%s' % name)
735 class VimeoAlbumIE(VimeoChannelIE):
736 IE_NAME = 'vimeo:album'
737 _VALID_URL = r'https://vimeo\.com/album/(?P<id>\d+)(?:$|[?#]|/(?!video))'
738 _TITLE_RE = r'<header id="page_header">\n\s*<h1>(.*?)</h1>'
740 'url': 'https://vimeo.com/album/2632481',
743 'title': 'Staff Favorites: November 2013',
745 'playlist_mincount': 13,
747 'note': 'Password-protected album',
748 'url': 'https://vimeo.com/album/3253534',
755 'videopassword': 'youtube-dl',
758 'url': 'https://vimeo.com/album/2632481/sort:plays/format:thumbnail',
759 'only_matching': True,
761 # TODO: respect page number
762 'url': 'https://vimeo.com/album/2632481/page:2/sort:plays/format:thumbnail',
763 'only_matching': True,
766 def _page_url(self, base_url, pagenum):
767 return '%s/page:%d/' % (base_url, pagenum)
769 def _real_extract(self, url):
770 album_id = self._match_id(url)
771 return self._extract_videos(album_id, 'https://vimeo.com/album/%s' % album_id)
774 class VimeoGroupsIE(VimeoAlbumIE):
775 IE_NAME = 'vimeo:group'
776 _VALID_URL = r'https://vimeo\.com/groups/(?P<name>[^/]+)(?:/(?!videos?/\d+)|$)'
778 'url': 'https://vimeo.com/groups/rolexawards',
781 'title': 'Rolex Awards for Enterprise',
783 'playlist_mincount': 73,
786 def _extract_list_title(self, webpage):
787 return self._og_search_title(webpage)
789 def _real_extract(self, url):
790 mobj = re.match(self._VALID_URL, url)
791 name = mobj.group('name')
792 return self._extract_videos(name, 'https://vimeo.com/groups/%s' % name)
795 class VimeoReviewIE(VimeoBaseInfoExtractor):
796 IE_NAME = 'vimeo:review'
797 IE_DESC = 'Review pages on vimeo'
798 _VALID_URL = r'https://vimeo\.com/[^/]+/review/(?P<id>[^/]+)'
800 'url': 'https://vimeo.com/user21297594/review/75524534/3c257a1b5d',
801 'md5': 'c507a72f780cacc12b2248bb4006d253',
805 'title': "DICK HARDWICK 'Comedian'",
806 'uploader': 'Richard Hardwick',
807 'uploader_id': 'user21297594',
810 'note': 'video player needs Referer',
811 'url': 'https://vimeo.com/user22258446/review/91613211/13f927e053',
812 'md5': '6295fdab8f4bf6a002d058b2c6dce276',
816 'title': 're:(?i)^Death by dogma versus assembling agile . Sander Hoogendoorn',
817 'uploader': 'DevWeek Events',
819 'thumbnail': 're:^https?://.*\.jpg$',
820 'uploader_id': 'user22258446',
823 'note': 'Password protected',
824 'url': 'https://vimeo.com/user37284429/review/138823582/c4d865efde',
828 'title': 'EFFICIENT PICKUP MASTERCLASS MODULE 1',
830 'uploader_id': 'user37284429',
833 'videopassword': 'holygrail',
837 def _real_initialize(self):
840 def _get_config_url(self, webpage_url, video_id, video_password_verified=False):
841 webpage = self._download_webpage(webpage_url, video_id)
842 config_url = self._html_search_regex(
843 r'data-config-url="([^"]+)"', webpage, 'config URL',
844 default=NO_DEFAULT if video_password_verified else None)
845 if config_url is None:
846 self._verify_video_password(webpage_url, video_id, webpage)
847 config_url = self._get_config_url(
848 webpage_url, video_id, video_password_verified=True)
851 def _real_extract(self, url):
852 video_id = self._match_id(url)
853 config_url = self._get_config_url(url, video_id)
854 config = self._download_json(config_url, video_id)
855 info_dict = self._parse_config(config, video_id)
856 self._vimeo_sort_formats(info_dict['formats'])
857 info_dict['id'] = video_id
861 class VimeoWatchLaterIE(VimeoChannelIE):
862 IE_NAME = 'vimeo:watchlater'
863 IE_DESC = 'Vimeo watch later list, "vimeowatchlater" keyword (requires authentication)'
864 _VALID_URL = r'https://vimeo\.com/(?:home/)?watchlater|:vimeowatchlater'
865 _TITLE = 'Watch Later'
866 _LOGIN_REQUIRED = True
868 'url': 'https://vimeo.com/watchlater',
869 'only_matching': True,
872 def _real_initialize(self):
875 def _page_url(self, base_url, pagenum):
876 url = '%s/page:%d/' % (base_url, pagenum)
877 request = sanitized_Request(url)
878 # Set the header to get a partial html page with the ids,
879 # the normal page doesn't contain them.
880 request.add_header('X-Requested-With', 'XMLHttpRequest')
883 def _real_extract(self, url):
884 return self._extract_videos('watchlater', 'https://vimeo.com/watchlater')
887 class VimeoLikesIE(InfoExtractor):
888 _VALID_URL = r'https://(?:www\.)?vimeo\.com/user(?P<id>[0-9]+)/likes/?(?:$|[?#]|sort:)'
889 IE_NAME = 'vimeo:likes'
890 IE_DESC = 'Vimeo user likes'
892 'url': 'https://vimeo.com/user755559/likes/',
893 'playlist_mincount': 293,
895 'id': 'user755559_likes',
896 'description': 'See all the videos urza likes',
897 'title': 'Videos urza likes',
901 def _real_extract(self, url):
902 user_id = self._match_id(url)
903 webpage = self._download_webpage(url, user_id)
904 page_count = self._int(
906 r'''(?x)<li><a\s+href="[^"]+"\s+data-page="([0-9]+)">
907 .*?</a></li>\s*<li\s+class="pagination_next">
908 ''', webpage, 'page count'),
909 'page count', fatal=True)
911 title = self._html_search_regex(
912 r'(?s)<h1>(.+?)</h1>', webpage, 'title', fatal=False)
913 description = self._html_search_meta('description', webpage)
916 page_url = 'https://vimeo.com/user%s/likes/page:%d/sort:date' % (
918 webpage = self._download_webpage(
920 note='Downloading page %d/%d' % (idx + 1, page_count))
921 video_list = self._search_regex(
922 r'(?s)<ol class="js-browse_list[^"]+"[^>]*>(.*?)</ol>',
923 webpage, 'video content')
925 r'<li[^>]*>\s*<a\s+href="([^"]+)"', video_list)
929 'url': compat_urlparse.urljoin(page_url, path),
932 pl = InAdvancePagedList(_get_page, page_count, PAGE_SIZE)
936 'id': 'user%s_likes' % user_id,
938 'description': description,