]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vimeo.py
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
', 'tbr
', 'format_id
'))
97 def _parse_config(self, config, video_id):
98 video_data = config['video
']
100 video_title = video_data['title
']
102 # Extract uploader, uploader_url and uploader_id
103 video_uploader = video_data.get('owner
', {}).get('name
')
104 video_uploader_url = video_data.get('owner
', {}).get('url
')
105 video_uploader_id = video_uploader_url.split('/')[-1] if video_uploader_url else None
107 # Extract video thumbnail
108 video_thumbnail = video_data.get('thumbnail
')
109 if video_thumbnail is None:
110 video_thumbs = video_data.get('thumbs
')
111 if video_thumbs and isinstance(video_thumbs, dict):
112 _, video_thumbnail = sorted((int(width if width.isdigit() else 0), t_url) for (width, t_url) in video_thumbs.items())[-1]
114 # Extract video duration
115 video_duration = int_or_none(video_data.get('duration
'))
118 config_files = video_data.get('files
') or config['request
'].get('files
', {})
119 for f in config_files.get('progressive
', []):
120 video_url = f.get('url
')
125 'format_id
': 'http
-%s' % f.get('quality
'),
126 'width
': int_or_none(f.get('width
')),
127 'height
': int_or_none(f.get('height
')),
128 'fps
': int_or_none(f.get('fps
')),
129 'tbr
': int_or_none(f.get('bitrate
')),
132 for files_type in ('hls
', 'dash
'):
133 for cdn_name, cdn_data in config_files.get(files_type, {}).get('cdns
', {}).items():
134 manifest_url = cdn_data.get('url
')
137 format_id = '%s-%s' % (files_type, cdn_name)
138 if files_type == 'hls
':
139 formats.extend(self._extract_m3u8_formats(
140 manifest_url, video_id, 'mp4
',
141 'm3u8_native
', m3u8_id=format_id,
142 note='Downloading
%s m3u8 information
' % cdn_name,
144 elif files_type == 'dash
':
145 mpd_pattern = r'/%s/(?
:sep
/)?video
/' % video_id
146 mpd_manifest_urls = []
147 if re.search(mpd_pattern, manifest_url):
148 for suffix, repl in (('', 'video
'), ('_sep
', 'sep
/video
')):
149 mpd_manifest_urls.append((format_id + suffix, re.sub(
150 mpd_pattern, '/%s/%s/' % (video_id, repl), manifest_url)))
152 mpd_manifest_urls = [(format_id, manifest_url)]
153 for f_id, m_url in mpd_manifest_urls:
154 mpd_formats = self._extract_mpd_formats(
155 m_url.replace('/master
.json
', '/master
.mpd
'), video_id, f_id,
156 'Downloading
%s MPD information
' % cdn_name,
158 for f in mpd_formats:
159 if f.get('vcodec
') == 'none
':
160 f['preference
'] = -50
161 elif f.get('acodec
') == 'none
':
162 f['preference
'] = -40
163 formats.extend(mpd_formats)
166 text_tracks = config['request
'].get('text_tracks
')
168 for tt in text_tracks:
169 subtitles[tt['lang
']] = [{
171 'url
': 'https
://vimeo
.com
' + tt['url
'],
175 'title
': video_title,
176 'uploader
': video_uploader,
177 'uploader_id
': video_uploader_id,
178 'uploader_url
': video_uploader_url,
179 'thumbnail
': video_thumbnail,
180 'duration
': video_duration,
182 'subtitles
': subtitles,
186 class VimeoIE(VimeoBaseInfoExtractor):
187 """Information extractor for vimeo.com."""
189 # _VALID_URL matches Vimeo URLs
190 _VALID_URL = r'''(?x)
199 vimeo(?P<pro>pro)?\.com/
200 (?!(?:channels|album)/[^/?#]+/?(?:$|[?#])|[^/]+/review/|ondemand/)
205 moogaloop\.swf)\?clip_id=
210 /?(?:[?&].*)?(?:[#].*)?$
215 'url
': 'http
://vimeo
.com
/56015672#at=0',
216 'md5': '8879b6cc097e987f02484baf890129e5',
220 'title': "youtube-dl test video - \u2605 \" ' \u5e78 / \\ \u00e4 \u21ad \U0001d550",
221 'description': 'md5:2d3305bad981a06ff79f027f19865021',
222 'timestamp': 1355990239,
223 'upload_date': '20121220',
224 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/user7108434',
225 'uploader_id': 'user7108434',
226 'uploader': 'Filippo Valsorda',
232 'url': 'http://vimeopro.com/openstreetmapus/state-of-the-map-us-2013/video/68093876',
233 'md5': '3b5ca6aa22b60dfeeadf50b72e44ed82',
234 'note': 'Vimeo Pro video (#1197)',
238 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/openstreetmapus',
239 'uploader_id': 'openstreetmapus',
240 'uploader': 'OpenStreetMap US',
241 'title': 'Andy Allan - Putting the Carto into OpenStreetMap Cartography',
242 'description': 'md5:fd69a7b8d8c34a4e1d2ec2e4afd6ec30',
247 'url': 'http://player.vimeo.com/video/54469442',
248 'md5': '619b811a4417aa4abe78dc653becf511',
249 'note': 'Videos that embed the url in the player page',
253 'title': 'Kathy Sierra: Building the minimum Badass User, Business of Software 2012',
254 'uploader': 'The BLN & Business of Software',
255 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/theblnbusinessofsoftware',
256 'uploader_id': 'theblnbusinessofsoftware',
262 'url': 'http://vimeo.com/68375962',
263 'md5': 'aaf896bdb7ddd6476df50007a0ac0ae7',
264 'note': 'Video protected with password',
268 'title': 'youtube-dl password protected test video',
269 'timestamp': 1371200155,
270 'upload_date': '20130614',
271 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/user18948128',
272 'uploader_id': 'user18948128',
273 'uploader': 'Jaime MarquĆnez FerrĆ”ndiz',
275 'description': 'md5:dca3ea23adb29ee387127bc4ddfce63f',
278 'videopassword': 'youtube-dl',
282 'url': 'http://vimeo.com/channels/keypeele/75629013',
283 'md5': '2f86a05afe9d7abc0b9126d229bbe15d',
287 'title': 'Key & Peele: Terrorist Interrogation',
288 'description': 'md5:8678b246399b070816b12313e8b4eb5c',
289 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/atencio',
290 'uploader_id': 'atencio',
291 'uploader': 'Peter Atencio',
292 'timestamp': 1380339469,
293 'upload_date': '20130928',
298 'url': 'http://vimeo.com/76979871',
299 'note': 'Video with subtitles',
303 'title': 'The New Vimeo Player (You Know, For Videos)',
304 'description': 'md5:2ec900bf97c3f389378a96aee11260ea',
305 'timestamp': 1381846109,
306 'upload_date': '20131015',
307 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/staff',
308 'uploader_id': 'staff',
309 'uploader': 'Vimeo Staff',
314 # from https://www.ouya.tv/game/Pier-Solar-and-the-Great-Architects/
315 'url': 'https://player.vimeo.com/video/98044508',
316 'note': 'The js code contains assignments to the same variable as the config',
320 'title': 'Pier Solar OUYA Official Trailer',
321 'uploader': 'Tulio GonƧalves',
322 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/user28849593',
323 'uploader_id': 'user28849593',
327 # contains original format
328 'url': 'https://vimeo.com/33951933',
329 'md5': '53c688fa95a55bf4b7293d37a89c5c53',
333 'title': 'FOX CLASSICS - Forever Classic ID - A Full Minute',
334 'uploader': 'The DMCI',
335 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/dmci',
336 'uploader_id': 'dmci',
337 'timestamp': 1324343742,
338 'upload_date': '20111220',
339 'description': 'md5:ae23671e82d05415868f7ad1aec21147',
343 # only available via https://vimeo.com/channels/tributes/6213729 and
344 # not via https://vimeo.com/6213729
345 'url': 'https://vimeo.com/channels/tributes/6213729',
349 'title': 'Vimeo Tribute: The Shining',
350 'uploader': 'Casey Donahue',
351 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/caseydonahue',
352 'uploader_id': 'caseydonahue',
353 'timestamp': 1250886430,
354 'upload_date': '20090821',
355 'description': 'md5:bdbf314014e58713e6e5b66eb252f4a6',
358 'skip_download': True,
360 'expected_warnings': ['Unable to download JSON metadata'],
363 # redirects to ondemand extractor and should be passed through it
364 # for successful extraction
365 'url': 'https://vimeo.com/73445910',
369 'title': 'The Reluctant Revolutionary',
370 'uploader': '10Ft Films',
371 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/tenfootfilms',
372 'uploader_id': 'tenfootfilms',
375 'skip_download': True,
379 'url': 'http://vimeo.com/moogaloop.swf?clip_id=2539741',
380 'only_matching': True,
383 'url': 'https://vimeo.com/109815029',
384 'note': 'Video not completely processed, "failed" seed status',
385 'only_matching': True,
388 'url': 'https://vimeo.com/groups/travelhd/videos/22439234',
389 'only_matching': True,
392 'url': 'https://vimeo.com/album/2632481/video/79010983',
393 'only_matching': True,
396 # source file returns 403: Forbidden
397 'url': 'https://vimeo.com/7809605',
398 'only_matching': True,
401 'url': 'https://vimeo.com/160743502/abd0e13fb4',
402 'only_matching': True,
407 def _smuggle_referrer(url
, referrer_url
):
408 return smuggle_url(url
, {'http_headers': {'Referer': referrer_url
}})
411 def _extract_urls(url
, webpage
):
413 # Look for embedded (iframe) Vimeo player
414 for mobj
in re
.finditer(
415 r
'<iframe[^>]+?src=(["\'])(?P
<url
>(?
:https?
:)?
//player\
.vimeo\
.com
/video
/\d
+.*?
)\
1',
417 urls.append(VimeoIE._smuggle_referrer(unescapeHTML(mobj.group('url
')), url))
419 # Look for embedded (swf embed) Vimeo player
420 r'<embed
[^
>]+?src
=(["\'])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)\1',
421 # Look more for non-standard embedded Vimeo player
422 r'<video[^>]+src=(["\'])(?P
<url
>(?
:https?
:)?
//(?
:www\
.)?vimeo\
.com
/[0-9]+)\
1',
424 for embed_re in PLAIN_EMBED_RE:
425 for mobj in re.finditer(embed_re, webpage):
426 urls.append(mobj.group('url
'))
430 def _extract_url(url, webpage):
431 urls = VimeoIE._extract_urls(url, webpage)
432 return urls[0] if urls else None
434 def _verify_player_video_password(self, url, video_id):
435 password = self._downloader.params.get('videopassword
')
437 raise ExtractorError('This video
is protected by a password
, use the
--video
-password option
')
438 data = urlencode_postdata({'password
': password})
439 pass_url = url + '/check
-password
'
440 password_request = sanitized_Request(pass_url, data)
441 password_request.add_header('Content
-Type
', 'application
/x
-www
-form
-urlencoded
')
442 password_request.add_header('Referer
', url)
443 return self._download_json(
444 password_request, video_id,
445 'Verifying the password
', 'Wrong password
')
447 def _real_initialize(self):
450 def _real_extract(self, url):
451 url, data = unsmuggle_url(url, {})
452 headers = std_headers.copy()
453 if 'http_headers
' in data:
454 headers.update(data['http_headers
'])
455 if 'Referer
' not in headers:
456 headers['Referer
'] = url
458 # Extract ID from URL
459 mobj = re.match(self._VALID_URL, url)
460 video_id = mobj.group('id')
462 if mobj.group('pro
') or mobj.group('player
'):
463 url = 'https
://player
.vimeo
.com
/video
/' + video_id
464 elif any(p in url for p in ('play_redirect_hls
', 'moogaloop
.swf
')):
465 url = 'https
://vimeo
.com
/' + video_id
467 # Retrieve video webpage to extract further information
468 request = sanitized_Request(url, headers=headers)
470 webpage, urlh = self._download_webpage_handle(request, video_id)
471 # Some URLs redirect to ondemand can't be extracted
with
472 # this extractor right away thus should be passed through
473 # ondemand extractor (e.g. https://vimeo.com/73445910)
474 if VimeoOndemandIE
.suitable(urlh
.geturl()):
475 return self
.url_result(urlh
.geturl(), VimeoOndemandIE
.ie_key())
476 except ExtractorError
as ee
:
477 if isinstance(ee
.cause
, compat_HTTPError
) and ee
.cause
.code
== 403:
478 errmsg
= ee
.cause
.read()
479 if b
'Because of its privacy settings, this video cannot be played here' in errmsg
:
480 raise ExtractorError(
481 'Cannot download embed-only video without embedding '
482 'URL. Please call youtube-dl with the URL of the page '
483 'that embeds this video.',
487 # Now we begin extracting as much information as we can from what we
488 # retrieved. First we extract the information common to all extractors,
489 # and latter we extract those that are Vimeo specific.
490 self
.report_extraction(video_id
)
492 vimeo_config
= self
._search
_regex
(
493 r
'vimeo\.config\s*=\s*(?:({.+?})|_extend\([^,]+,\s+({.+?})\));', webpage
,
494 'vimeo config', default
=None)
496 seed_status
= self
._parse
_json
(vimeo_config
, video_id
).get('seed_status', {})
497 if seed_status
.get('state') == 'failed':
498 raise ExtractorError(
499 '%s said: %s' % (self
.IE_NAME
, seed_status
['title']),
505 # Extract the config JSON
508 config_url
= self
._html
_search
_regex
(
509 r
' data-config-url="(.+?)"', webpage
,
510 'config URL', default
=None)
512 # Sometimes new react-based page is served instead of old one that require
513 # different config URL extraction approach (see
514 # https://github.com/rg3/youtube-dl/pull/7209)
515 vimeo_clip_page_config
= self
._search
_regex
(
516 r
'vimeo\.clip_page_config\s*=\s*({.+?});', webpage
,
517 'vimeo clip page config')
518 page_config
= self
._parse
_json
(vimeo_clip_page_config
, video_id
)
519 config_url
= page_config
['player']['config_url']
520 cc_license
= page_config
.get('cc_license')
522 page_config
, lambda x
: x
['clip']['uploaded_on'],
524 config_json
= self
._download
_webpage
(config_url
, video_id
)
525 config
= json
.loads(config_json
)
526 except RegexNotFoundError
:
527 # For pro videos or player.vimeo.com urls
528 # We try to find out to which variable is assigned the config dic
529 m_variable_name
= re
.search(r
'(\w)\.video\.id', webpage
)
530 if m_variable_name
is not None:
531 config_re
= r
'%s=({[^}].+?});' % re
.escape(m_variable_name
.group(1))
533 config_re
= [r
' = {config:({.+?}),assets:', r
'(?:[abc])=({.+?});']
534 config
= self
._search
_regex
(config_re
, webpage
, 'info section',
536 config
= json
.loads(config
)
537 except Exception as e
:
538 if re
.search('The creator of this video has not given you permission to embed it on this domain.', webpage
):
539 raise ExtractorError('The author has restricted the access to this video, try with the "--referer" option')
541 if re
.search(r
'<form[^>]+?id="pw_form"', webpage
) is not None:
542 if '_video_password_verified' in data
:
543 raise ExtractorError('video password verification failed!')
544 self
._verify
_video
_password
(url
, video_id
, webpage
)
545 return self
._real
_extract
(
546 smuggle_url(url
, {'_video_password_verified': 'verified'}))
548 raise ExtractorError('Unable to extract info section',
551 if config
.get('view') == 4:
552 config
= self
._verify
_player
_video
_password
(url
, video_id
)
555 if '>You rented this title.<' in webpage
:
557 if config
.get('user', {}).get('purchased'):
560 config
, lambda x
: x
['video']['vod']['purchase_options'][0]['label_string'], compat_str
)
561 if label
and label
.startswith('You rented this'):
566 feature_id
= config
.get('video', {}).get('vod', {}).get('feature_id')
567 if feature_id
and not data
.get('force_feature_id', False):
568 return self
.url_result(smuggle_url(
569 'https://player.vimeo.com/player/%s' % feature_id
,
570 {'force_feature_id': True}), 'Vimeo')
572 # Extract video description
574 video_description
= self
._html
_search
_regex
(
575 r
'(?s)<div\s+class="[^"]*description[^"]*"[^>]*>(.*?)</div>',
576 webpage
, 'description', default
=None)
577 if not video_description
:
578 video_description
= self
._html
_search
_meta
(
579 'description', webpage
, default
=None)
580 if not video_description
and mobj
.group('pro'):
581 orig_webpage
= self
._download
_webpage
(
583 note
='Downloading webpage for description',
586 video_description
= self
._html
_search
_meta
(
587 'description', orig_webpage
, default
=None)
588 if not video_description
and not mobj
.group('player'):
589 self
._downloader
.report_warning('Cannot find video description')
591 # Extract upload date
593 timestamp
= self
._search
_regex
(
594 r
'<time[^>]+datetime="([^"]+)"', webpage
,
595 'timestamp', default
=None)
598 view_count
= int(self
._search
_regex
(r
'UserPlays:(\d+)', webpage
, 'view count'))
599 like_count
= int(self
._search
_regex
(r
'UserLikes:(\d+)', webpage
, 'like count'))
600 comment_count
= int(self
._search
_regex
(r
'UserComments:(\d+)', webpage
, 'comment count'))
601 except RegexNotFoundError
:
602 # This info is only available in vimeo.com/{id} urls
608 download_request
= sanitized_Request('https://vimeo.com/%s?action=load_download_config' % video_id
, headers
={
609 'X-Requested-With': 'XMLHttpRequest'})
610 download_data
= self
._download
_json
(download_request
, video_id
, fatal
=False)
612 source_file
= download_data
.get('source_file')
613 if isinstance(source_file
, dict):
614 download_url
= source_file
.get('download_url')
615 if download_url
and not source_file
.get('is_cold') and not source_file
.get('is_defrosting'):
616 source_name
= source_file
.get('public_name', 'Original')
617 if self
._is
_valid
_url
(download_url
, video_id
, '%s video' % source_name
):
619 source_file
, lambda x
: x
['extension'],
620 compat_str
) or determine_ext(
621 download_url
, None) or 'mp4').lower()
625 'width': int_or_none(source_file
.get('width')),
626 'height': int_or_none(source_file
.get('height')),
627 'filesize': parse_filesize(source_file
.get('size')),
628 'format_id': source_name
,
632 info_dict
= self
._parse
_config
(config
, video_id
)
633 formats
.extend(info_dict
['formats'])
634 self
._vimeo
_sort
_formats
(formats
)
637 cc_license
= self
._search
_regex
(
638 r
'<link[^>]+rel=["\']license
["\'][^>]+href=(["\'])(?P
<license
>(?
:(?
!\
1).)+)\
1',
639 webpage, 'license
', default=None, group='license
')
644 'timestamp
': unified_timestamp(timestamp),
645 'description
': video_description,
647 'view_count
': view_count,
648 'like_count
': like_count,
649 'comment_count
': comment_count,
650 'license
': cc_license,
656 class VimeoOndemandIE(VimeoBaseInfoExtractor):
657 IE_NAME = 'vimeo
:ondemand
'
658 _VALID_URL = r'https?
://(?
:www\
.)?vimeo\
.com
/ondemand
/(?P
<id>[^
/?
#&]+)'
660 # ondemand video not available via https://vimeo.com/id
661 'url': 'https://vimeo.com/ondemand/20704',
662 'md5': 'c424deda8c7f73c1dfb3edd7630e2f35',
666 'title': '×××¢××× - ×××× ×××Ŗ× ×¤××××',
667 'uploader': '×× ×”×Ø×××',
668 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/gumfilms',
669 'uploader_id': 'gumfilms',
672 'format': 'best[protocol=https]',
675 # requires Referer to be passed along with og:video:url
676 'url': 'https://vimeo.com/ondemand/36938/126682985',
680 'title': 'RƤvlock, rƤtt lƤte pƄ rƤtt plats',
681 'uploader': 'Lindroth & Norin',
682 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/user14430847',
683 'uploader_id': 'user14430847',
686 'skip_download': True,
689 'url': 'https://vimeo.com/ondemand/nazmaalik',
690 'only_matching': True,
692 'url': 'https://vimeo.com/ondemand/141692381',
693 'only_matching': True,
695 'url': 'https://vimeo.com/ondemand/thelastcolony/150274832',
696 'only_matching': True,
699 def _real_extract(self
, url
):
700 video_id
= self
._match
_id
(url
)
701 webpage
= self
._download
_webpage
(url
, video_id
)
702 return self
.url_result(
703 # Some videos require Referer to be passed along with og:video:url
704 # similarly to generic vimeo embeds (e.g.
705 # https://vimeo.com/ondemand/36938/126682985).
706 VimeoIE
._smuggle
_referrer
(self
._og
_search
_video
_url
(webpage
), url
),
710 class VimeoChannelIE(VimeoBaseInfoExtractor
):
711 IE_NAME
= 'vimeo:channel'
712 _VALID_URL
= r
'https://vimeo\.com/channels/(?P<id>[^/?#]+)/?(?:$|[?#])'
713 _MORE_PAGES_INDICATOR
= r
'<a.+?rel="next"'
715 _TITLE_RE
= r
'<link rel="alternate"[^>]+?title="(.*?)"'
717 'url': 'https://vimeo.com/channels/tributes',
720 'title': 'Vimeo Tributes',
722 'playlist_mincount': 25,
725 def _page_url(self
, base_url
, pagenum
):
726 return '%s/videos/page:%d/' % (base_url
, pagenum
)
728 def _extract_list_title(self
, webpage
):
729 return self
._TITLE
or self
._html
_search
_regex
(self
._TITLE
_RE
, webpage
, 'list title')
731 def _login_list_password(self
, page_url
, list_id
, webpage
):
732 login_form
= self
._search
_regex
(
733 r
'(?s)<form[^>]+?id="pw_form"(.*?)</form>',
734 webpage
, 'login form', default
=None)
738 password
= self
._downloader
.params
.get('videopassword')
740 raise ExtractorError('This album is protected by a password, use the --video-password option', expected
=True)
741 fields
= self
._hidden
_inputs
(login_form
)
742 token
, vuid
= self
._extract
_xsrft
_and
_vuid
(webpage
)
743 fields
['token'] = token
744 fields
['password'] = password
745 post
= urlencode_postdata(fields
)
746 password_path
= self
._search
_regex
(
747 r
'action="([^"]+)"', login_form
, 'password URL')
748 password_url
= compat_urlparse
.urljoin(page_url
, password_path
)
749 password_request
= sanitized_Request(password_url
, post
)
750 password_request
.add_header('Content-type', 'application/x-www-form-urlencoded')
751 self
._set
_vimeo
_cookie
('vuid', vuid
)
752 self
._set
_vimeo
_cookie
('xsrft', token
)
754 return self
._download
_webpage
(
755 password_request
, list_id
,
756 'Verifying the password', 'Wrong password')
758 def _title_and_entries(self
, list_id
, base_url
):
759 for pagenum
in itertools
.count(1):
760 page_url
= self
._page
_url
(base_url
, pagenum
)
761 webpage
= self
._download
_webpage
(
763 'Downloading page %s' % pagenum
)
766 webpage
= self
._login
_list
_password
(page_url
, list_id
, webpage
)
767 yield self
._extract
_list
_title
(webpage
)
769 # Try extracting href first since not all videos are available via
770 # short https://vimeo.com/id URL (e.g. https://vimeo.com/channels/tributes/6213729)
772 r
'id="clip_(\d+)"[^>]*>\s*<a[^>]+href="(/(?:[^/]+/)*\1)(?:[^>]+\btitle="([^"]+)")?', webpage
)
774 for video_id
, video_url
, video_title
in clips
:
775 yield self
.url_result(
776 compat_urlparse
.urljoin(base_url
, video_url
),
777 VimeoIE
.ie_key(), video_id
=video_id
, video_title
=video_title
)
778 # More relaxed fallback
780 for video_id
in re
.findall(r
'id=["\']clip_(\d
+)', webpage):
781 yield self.url_result(
782 'https
://vimeo
.com
/%s' % video_id,
783 VimeoIE.ie_key(), video_id=video_id)
785 if re.search(self._MORE_PAGES_INDICATOR, webpage, re.DOTALL) is None:
788 def _extract_videos(self, list_id, base_url):
789 title_and_entries = self._title_and_entries(list_id, base_url)
790 list_title = next(title_and_entries)
791 return self.playlist_result(title_and_entries, list_id, list_title)
793 def _real_extract(self, url):
794 mobj = re.match(self._VALID_URL, url)
795 channel_id = mobj.group('id')
796 return self._extract_videos(channel_id, 'https
://vimeo
.com
/channels
/%s' % channel_id)
799 class VimeoUserIE(VimeoChannelIE):
800 IE_NAME = 'vimeo
:user
'
801 _VALID_URL = r'https
://vimeo\
.com
/(?
!(?
:[0-9]+|watchlater
)(?
:$|
[?
#/]))(?P<name>[^/]+)(?:/videos|[#?]|$)'
802 _TITLE_RE
= r
'<a[^>]+?class="user">([^<>]+?)</a>'
804 'url': 'https://vimeo.com/nkistudio/videos',
809 'playlist_mincount': 66,
812 def _real_extract(self
, url
):
813 mobj
= re
.match(self
._VALID
_URL
, url
)
814 name
= mobj
.group('name')
815 return self
._extract
_videos
(name
, 'https://vimeo.com/%s' % name
)
818 class VimeoAlbumIE(VimeoChannelIE
):
819 IE_NAME
= 'vimeo:album'
820 _VALID_URL
= r
'https://vimeo\.com/album/(?P<id>\d+)(?:$|[?#]|/(?!video))'
821 _TITLE_RE
= r
'<header id="page_header">\n\s*<h1>(.*?)</h1>'
823 'url': 'https://vimeo.com/album/2632481',
826 'title': 'Staff Favorites: November 2013',
828 'playlist_mincount': 13,
830 'note': 'Password-protected album',
831 'url': 'https://vimeo.com/album/3253534',
838 'videopassword': 'youtube-dl',
841 'url': 'https://vimeo.com/album/2632481/sort:plays/format:thumbnail',
842 'only_matching': True,
844 # TODO: respect page number
845 'url': 'https://vimeo.com/album/2632481/page:2/sort:plays/format:thumbnail',
846 'only_matching': True,
849 def _page_url(self
, base_url
, pagenum
):
850 return '%s/page:%d/' % (base_url
, pagenum
)
852 def _real_extract(self
, url
):
853 album_id
= self
._match
_id
(url
)
854 return self
._extract
_videos
(album_id
, 'https://vimeo.com/album/%s' % album_id
)
857 class VimeoGroupsIE(VimeoAlbumIE
):
858 IE_NAME
= 'vimeo:group'
859 _VALID_URL
= r
'https://vimeo\.com/groups/(?P<name>[^/]+)(?:/(?!videos?/\d+)|$)'
861 'url': 'https://vimeo.com/groups/rolexawards',
864 'title': 'Rolex Awards for Enterprise',
866 'playlist_mincount': 73,
869 def _extract_list_title(self
, webpage
):
870 return self
._og
_search
_title
(webpage
)
872 def _real_extract(self
, url
):
873 mobj
= re
.match(self
._VALID
_URL
, url
)
874 name
= mobj
.group('name')
875 return self
._extract
_videos
(name
, 'https://vimeo.com/groups/%s' % name
)
878 class VimeoReviewIE(VimeoBaseInfoExtractor
):
879 IE_NAME
= 'vimeo:review'
880 IE_DESC
= 'Review pages on vimeo'
881 _VALID_URL
= r
'https://vimeo\.com/[^/]+/review/(?P<id>[^/]+)'
883 'url': 'https://vimeo.com/user21297594/review/75524534/3c257a1b5d',
884 'md5': 'c507a72f780cacc12b2248bb4006d253',
888 'title': "DICK HARDWICK 'Comedian'",
889 'uploader': 'Richard Hardwick',
890 'uploader_id': 'user21297594',
893 'note': 'video player needs Referer',
894 'url': 'https://vimeo.com/user22258446/review/91613211/13f927e053',
895 'md5': '6295fdab8f4bf6a002d058b2c6dce276',
899 'title': 're:(?i)^Death by dogma versus assembling agile . Sander Hoogendoorn',
900 'uploader': 'DevWeek Events',
902 'thumbnail': r
're:^https?://.*\.jpg$',
903 'uploader_id': 'user22258446',
906 'note': 'Password protected',
907 'url': 'https://vimeo.com/user37284429/review/138823582/c4d865efde',
911 'title': 'EFFICIENT PICKUP MASTERCLASS MODULE 1',
913 'uploader_id': 'user37284429',
916 'videopassword': 'holygrail',
918 'skip': 'video gone',
921 def _real_initialize(self
):
924 def _get_config_url(self
, webpage_url
, video_id
, video_password_verified
=False):
925 webpage
= self
._download
_webpage
(webpage_url
, video_id
)
926 config_url
= self
._html
_search
_regex
(
927 r
'data-config-url=(["\'])(?P
<url
>(?
:(?
!\
1).)+)\
1', webpage,
928 'config URL
', default=None, group='url
')
930 data = self._parse_json(self._search_regex(
931 r'window\s
*=\s
*_extend\
(window
,\s
*({.+?
})\
);', webpage, 'data
',
932 default=NO_DEFAULT if video_password_verified else '{}'), video_id)
933 config_url = data.get('vimeo_esi
', {}).get('config
', {}).get('configUrl
')
934 if config_url is None:
935 self._verify_video_password(webpage_url, video_id, webpage)
936 config_url = self._get_config_url(
937 webpage_url, video_id, video_password_verified=True)
940 def _real_extract(self, url):
941 video_id = self._match_id(url)
942 config_url = self._get_config_url(url, video_id)
943 config = self._download_json(config_url, video_id)
944 info_dict = self._parse_config(config, video_id)
945 self._vimeo_sort_formats(info_dict['formats
'])
946 info_dict['id'] = video_id
950 class VimeoWatchLaterIE(VimeoChannelIE):
951 IE_NAME = 'vimeo
:watchlater
'
952 IE_DESC = 'Vimeo watch later
list, "vimeowatchlater" keyword (requires authentication
)'
953 _VALID_URL = r'https
://vimeo\
.com
/(?
:home
/)?watchlater|
:vimeowatchlater
'
954 _TITLE = 'Watch Later
'
955 _LOGIN_REQUIRED = True
957 'url
': 'https
://vimeo
.com
/watchlater
',
958 'only_matching
': True,
961 def _real_initialize(self):
964 def _page_url(self, base_url, pagenum):
965 url = '%s/page
:%d/' % (base_url, pagenum)
966 request = sanitized_Request(url)
967 # Set the header to get a partial html page with the ids,
968 # the normal page doesn't contain them
.
969 request
.add_header('X-Requested-With', 'XMLHttpRequest')
972 def _real_extract(self
, url
):
973 return self
._extract
_videos
('watchlater', 'https://vimeo.com/watchlater')
976 class VimeoLikesIE(InfoExtractor
):
977 _VALID_URL
= r
'https://(?:www\.)?vimeo\.com/user(?P<id>[0-9]+)/likes/?(?:$|[?#]|sort:)'
978 IE_NAME
= 'vimeo:likes'
979 IE_DESC
= 'Vimeo user likes'
981 'url': 'https://vimeo.com/user755559/likes/',
982 'playlist_mincount': 293,
984 'id': 'user755559_likes',
985 'description': 'See all the videos urza likes',
986 'title': 'Videos urza likes',
990 def _real_extract(self
, url
):
991 user_id
= self
._match
_id
(url
)
992 webpage
= self
._download
_webpage
(url
, user_id
)
993 page_count
= self
._int
(
995 r
'''(?x)<li><a\s+href="[^"]+"\s+data-page="([0-9]+)">
996 .*?</a></li>\s*<li\s+class="pagination_next">
997 ''', webpage
, 'page count'),
998 'page count', fatal
=True)
1000 title
= self
._html
_search
_regex
(
1001 r
'(?s)<h1>(.+?)</h1>', webpage
, 'title', fatal
=False)
1002 description
= self
._html
_search
_meta
('description', webpage
)
1005 page_url
= 'https://vimeo.com/user%s/likes/page:%d/sort:date' % (
1007 webpage
= self
._download
_webpage
(
1009 note
='Downloading page %d/%d' % (idx
+ 1, page_count
))
1010 video_list
= self
._search
_regex
(
1011 r
'(?s)<ol class="js-browse_list[^"]+"[^>]*>(.*?)</ol>',
1012 webpage
, 'video content')
1014 r
'<li[^>]*>\s*<a\s+href="([^"]+)"', video_list
)
1018 'url': compat_urlparse
.urljoin(page_url
, path
),
1021 pl
= InAdvancePagedList(_get_page
, page_count
, PAGE_SIZE
)
1024 '_type': 'playlist',
1025 'id': 'user%s_likes' % user_id
,
1027 'description': description
,