]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vimeo.py
51c69a80c216889315a4c5fe070572100c13dd36
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 # redirects to ondemand extractor and should be passed throught it
327 # for successful extraction
328 'url': 'https://vimeo.com/73445910',
332 'title': 'The Reluctant Revolutionary',
333 'uploader': '10Ft Films',
334 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/tenfootfilms',
335 'uploader_id': 'tenfootfilms',
338 'skip_download': True,
342 'url': 'http://vimeo.com/moogaloop.swf?clip_id=2539741',
343 'only_matching': True,
346 'url': 'https://vimeo.com/109815029',
347 'note': 'Video not completely processed, "failed" seed status',
348 'only_matching': True,
351 'url': 'https://vimeo.com/groups/travelhd/videos/22439234',
352 'only_matching': True,
355 'url': 'https://vimeo.com/album/2632481/video/79010983',
356 'only_matching': True,
359 # source file returns 403: Forbidden
360 'url': 'https://vimeo.com/7809605',
361 'only_matching': True,
364 'url': 'https://vimeo.com/160743502/abd0e13fb4',
365 'only_matching': True,
370 def _smuggle_referrer(url
, referrer_url
):
371 return smuggle_url(url
, {'http_headers': {'Referer': referrer_url
}})
374 def _extract_urls(url
, webpage
):
376 # Look for embedded (iframe) Vimeo player
377 for mobj
in re
.finditer(
378 r
'<iframe[^>]+?src=(["\'])(?P
<url
>(?
:https?
:)?
//player\
.vimeo\
.com
/video
/.+?
)\
1',
380 urls.append(VimeoIE._smuggle_referrer(unescapeHTML(mobj.group('url
')), url))
382 # Look for embedded (swf embed) Vimeo player
383 r'<embed
[^
>]+?src
=(["\'])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)\1',
384 # Look more for non-standard embedded Vimeo player
385 r'<video[^>]+src=(["\'])(?P
<url
>(?
:https?
:)?
//(?
:www\
.)?vimeo\
.com
/[0-9]+)\
1',
387 for embed_re in PLAIN_EMBED_RE:
388 for mobj in re.finditer(embed_re, webpage):
389 urls.append(mobj.group('url
'))
393 def _extract_url(url, webpage):
394 urls = VimeoIE._extract_urls(url, webpage)
395 return urls[0] if urls else None
397 def _verify_player_video_password(self, url, video_id):
398 password = self._downloader.params.get('videopassword
')
400 raise ExtractorError('This video
is protected by a password
, use the
--video
-password option
')
401 data = urlencode_postdata({'password
': password})
402 pass_url = url + '/check
-password
'
403 password_request = sanitized_Request(pass_url, data)
404 password_request.add_header('Content
-Type
', 'application
/x
-www
-form
-urlencoded
')
405 password_request.add_header('Referer
', url)
406 return self._download_json(
407 password_request, video_id,
408 'Verifying the password
', 'Wrong password
')
410 def _real_initialize(self):
413 def _real_extract(self, url):
414 url, data = unsmuggle_url(url, {})
415 headers = std_headers.copy()
416 if 'http_headers
' in data:
417 headers.update(data['http_headers
'])
418 if 'Referer
' not in headers:
419 headers['Referer
'] = url
421 # Extract ID from URL
422 mobj = re.match(self._VALID_URL, url)
423 video_id = mobj.group('id')
425 if mobj.group('pro
') or mobj.group('player
'):
426 url = 'https
://player
.vimeo
.com
/video
/' + video_id
427 elif any(p in url for p in ('play_redirect_hls
', 'moogaloop
.swf
')):
428 url = 'https
://vimeo
.com
/' + video_id
430 # Retrieve video webpage to extract further information
431 request = sanitized_Request(url, headers=headers)
433 webpage, urlh = self._download_webpage_handle(request, video_id)
434 # Some URLs redirect to ondemand can't be extracted
with
435 # this extractor right away thus should be passed through
436 # ondemand extractor (e.g. https://vimeo.com/73445910)
437 if VimeoOndemandIE
.suitable(urlh
.geturl()):
438 return self
.url_result(urlh
.geturl(), VimeoOndemandIE
.ie_key())
439 except ExtractorError
as ee
:
440 if isinstance(ee
.cause
, compat_HTTPError
) and ee
.cause
.code
== 403:
441 errmsg
= ee
.cause
.read()
442 if b
'Because of its privacy settings, this video cannot be played here' in errmsg
:
443 raise ExtractorError(
444 'Cannot download embed-only video without embedding '
445 'URL. Please call youtube-dl with the URL of the page '
446 'that embeds this video.',
450 # Now we begin extracting as much information as we can from what we
451 # retrieved. First we extract the information common to all extractors,
452 # and latter we extract those that are Vimeo specific.
453 self
.report_extraction(video_id
)
455 vimeo_config
= self
._search
_regex
(
456 r
'vimeo\.config\s*=\s*(?:({.+?})|_extend\([^,]+,\s+({.+?})\));', webpage
,
457 'vimeo config', default
=None)
459 seed_status
= self
._parse
_json
(vimeo_config
, video_id
).get('seed_status', {})
460 if seed_status
.get('state') == 'failed':
461 raise ExtractorError(
462 '%s said: %s' % (self
.IE_NAME
, seed_status
['title']),
465 # Extract the config JSON
468 config_url
= self
._html
_search
_regex
(
469 r
' data-config-url="(.+?)"', webpage
,
470 'config URL', default
=None)
472 # Sometimes new react-based page is served instead of old one that require
473 # different config URL extraction approach (see
474 # https://github.com/rg3/youtube-dl/pull/7209)
475 vimeo_clip_page_config
= self
._search
_regex
(
476 r
'vimeo\.clip_page_config\s*=\s*({.+?});', webpage
,
477 'vimeo clip page config')
478 config_url
= self
._parse
_json
(
479 vimeo_clip_page_config
, video_id
)['player']['config_url']
480 config_json
= self
._download
_webpage
(config_url
, video_id
)
481 config
= json
.loads(config_json
)
482 except RegexNotFoundError
:
483 # For pro videos or player.vimeo.com urls
484 # We try to find out to which variable is assigned the config dic
485 m_variable_name
= re
.search('(\w)\.video\.id', webpage
)
486 if m_variable_name
is not None:
487 config_re
= r
'%s=({[^}].+?});' % re
.escape(m_variable_name
.group(1))
489 config_re
= [r
' = {config:({.+?}),assets:', r
'(?:[abc])=({.+?});']
490 config
= self
._search
_regex
(config_re
, webpage
, 'info section',
492 config
= json
.loads(config
)
493 except Exception as e
:
494 if re
.search('The creator of this video has not given you permission to embed it on this domain.', webpage
):
495 raise ExtractorError('The author has restricted the access to this video, try with the "--referer" option')
497 if re
.search(r
'<form[^>]+?id="pw_form"', webpage
) is not None:
498 if '_video_password_verified' in data
:
499 raise ExtractorError('video password verification failed!')
500 self
._verify
_video
_password
(url
, video_id
, webpage
)
501 return self
._real
_extract
(
502 smuggle_url(url
, {'_video_password_verified': 'verified'}))
504 raise ExtractorError('Unable to extract info section',
507 if config
.get('view') == 4:
508 config
= self
._verify
_player
_video
_password
(url
, video_id
)
511 if '>You rented this title.<' in webpage
:
513 if config
.get('user', {}).get('purchased'):
516 config
, lambda x
: x
['video']['vod']['purchase_options'][0]['label_string'], compat_str
)
517 if label
and label
.startswith('You rented this'):
522 feature_id
= config
.get('video', {}).get('vod', {}).get('feature_id')
523 if feature_id
and not data
.get('force_feature_id', False):
524 return self
.url_result(smuggle_url(
525 'https://player.vimeo.com/player/%s' % feature_id
,
526 {'force_feature_id': True}), 'Vimeo')
528 # Extract video description
530 video_description
= self
._html
_search
_regex
(
531 r
'(?s)<div\s+class="[^"]*description[^"]*"[^>]*>(.*?)</div>',
532 webpage
, 'description', default
=None)
533 if not video_description
:
534 video_description
= self
._html
_search
_meta
(
535 'description', webpage
, default
=None)
536 if not video_description
and mobj
.group('pro'):
537 orig_webpage
= self
._download
_webpage
(
539 note
='Downloading webpage for description',
542 video_description
= self
._html
_search
_meta
(
543 'description', orig_webpage
, default
=None)
544 if not video_description
and not mobj
.group('player'):
545 self
._downloader
.report_warning('Cannot find video description')
547 # Extract upload date
548 video_upload_date
= None
549 mobj
= re
.search(r
'<time[^>]+datetime="([^"]+)"', webpage
)
551 video_upload_date
= unified_strdate(mobj
.group(1))
554 view_count
= int(self
._search
_regex
(r
'UserPlays:(\d+)', webpage
, 'view count'))
555 like_count
= int(self
._search
_regex
(r
'UserLikes:(\d+)', webpage
, 'like count'))
556 comment_count
= int(self
._search
_regex
(r
'UserComments:(\d+)', webpage
, 'comment count'))
557 except RegexNotFoundError
:
558 # This info is only available in vimeo.com/{id} urls
564 download_request
= sanitized_Request('https://vimeo.com/%s?action=load_download_config' % video_id
, headers
={
565 'X-Requested-With': 'XMLHttpRequest'})
566 download_data
= self
._download
_json
(download_request
, video_id
, fatal
=False)
568 source_file
= download_data
.get('source_file')
569 if isinstance(source_file
, dict):
570 download_url
= source_file
.get('download_url')
571 if download_url
and not source_file
.get('is_cold') and not source_file
.get('is_defrosting'):
572 source_name
= source_file
.get('public_name', 'Original')
573 if self
._is
_valid
_url
(download_url
, video_id
, '%s video' % source_name
):
574 ext
= source_file
.get('extension', determine_ext(download_url
)).lower()
578 'width': int_or_none(source_file
.get('width')),
579 'height': int_or_none(source_file
.get('height')),
580 'filesize': parse_filesize(source_file
.get('size')),
581 'format_id': source_name
,
585 info_dict
= self
._parse
_config
(config
, video_id
)
586 formats
.extend(info_dict
['formats'])
587 self
._vimeo
_sort
_formats
(formats
)
591 'upload_date': video_upload_date
,
592 'description': video_description
,
594 'view_count': view_count
,
595 'like_count': like_count
,
596 'comment_count': comment_count
,
602 class VimeoOndemandIE(VimeoBaseInfoExtractor
):
603 IE_NAME
= 'vimeo:ondemand'
604 _VALID_URL
= r
'https?://(?:www\.)?vimeo\.com/ondemand/(?P<id>[^/?#&]+)'
606 # ondemand video not available via https://vimeo.com/id
607 'url': 'https://vimeo.com/ondemand/20704',
608 'md5': 'c424deda8c7f73c1dfb3edd7630e2f35',
612 'title': '×××¢××× - ×××× ×××Ŗ× ×¤××××',
613 'uploader': '×× ×”×Ø×××',
614 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/gumfilms',
615 'uploader_id': 'gumfilms',
618 # requires Referer to be passed along with og:video:url
619 'url': 'https://vimeo.com/ondemand/36938/126682985',
623 'title': 'RƤvlock, rƤtt lƤte pƄ rƤtt plats',
624 'uploader': 'Lindroth & Norin',
625 'uploader_url': 're:https?://(?:www\.)?vimeo\.com/user14430847',
626 'uploader_id': 'user14430847',
629 'skip_download': True,
632 'url': 'https://vimeo.com/ondemand/nazmaalik',
633 'only_matching': True,
635 'url': 'https://vimeo.com/ondemand/141692381',
636 'only_matching': True,
638 'url': 'https://vimeo.com/ondemand/thelastcolony/150274832',
639 'only_matching': True,
642 def _real_extract(self
, url
):
643 video_id
= self
._match
_id
(url
)
644 webpage
= self
._download
_webpage
(url
, video_id
)
645 return self
.url_result(
646 # Some videos require Referer to be passed along with og:video:url
647 # similarly to generic vimeo embeds (e.g.
648 # https://vimeo.com/ondemand/36938/126682985).
649 VimeoIE
._smuggle
_referrer
(self
._og
_search
_video
_url
(webpage
), url
),
653 class VimeoChannelIE(VimeoBaseInfoExtractor
):
654 IE_NAME
= 'vimeo:channel'
655 _VALID_URL
= r
'https://vimeo\.com/channels/(?P<id>[^/?#]+)/?(?:$|[?#])'
656 _MORE_PAGES_INDICATOR
= r
'<a.+?rel="next"'
658 _TITLE_RE
= r
'<link rel="alternate"[^>]+?title="(.*?)"'
660 'url': 'https://vimeo.com/channels/tributes',
663 'title': 'Vimeo Tributes',
665 'playlist_mincount': 25,
668 def _page_url(self
, base_url
, pagenum
):
669 return '%s/videos/page:%d/' % (base_url
, pagenum
)
671 def _extract_list_title(self
, webpage
):
672 return self
._TITLE
or self
._html
_search
_regex
(self
._TITLE
_RE
, webpage
, 'list title')
674 def _login_list_password(self
, page_url
, list_id
, webpage
):
675 login_form
= self
._search
_regex
(
676 r
'(?s)<form[^>]+?id="pw_form"(.*?)</form>',
677 webpage
, 'login form', default
=None)
681 password
= self
._downloader
.params
.get('videopassword')
683 raise ExtractorError('This album is protected by a password, use the --video-password option', expected
=True)
684 fields
= self
._hidden
_inputs
(login_form
)
685 token
, vuid
= self
._extract
_xsrft
_and
_vuid
(webpage
)
686 fields
['token'] = token
687 fields
['password'] = password
688 post
= urlencode_postdata(fields
)
689 password_path
= self
._search
_regex
(
690 r
'action="([^"]+)"', login_form
, 'password URL')
691 password_url
= compat_urlparse
.urljoin(page_url
, password_path
)
692 password_request
= sanitized_Request(password_url
, post
)
693 password_request
.add_header('Content-type', 'application/x-www-form-urlencoded')
694 self
._set
_vimeo
_cookie
('vuid', vuid
)
695 self
._set
_vimeo
_cookie
('xsrft', token
)
697 return self
._download
_webpage
(
698 password_request
, list_id
,
699 'Verifying the password', 'Wrong password')
701 def _title_and_entries(self
, list_id
, base_url
):
702 for pagenum
in itertools
.count(1):
703 page_url
= self
._page
_url
(base_url
, pagenum
)
704 webpage
= self
._download
_webpage
(
706 'Downloading page %s' % pagenum
)
709 webpage
= self
._login
_list
_password
(page_url
, list_id
, webpage
)
710 yield self
._extract
_list
_title
(webpage
)
712 # Try extracting href first since not all videos are available via
713 # short https://vimeo.com/id URL (e.g. https://vimeo.com/channels/tributes/6213729)
715 r
'id="clip_(\d+)"[^>]*>\s*<a[^>]+href="(/(?:[^/]+/)*\1)', webpage
)
717 for video_id
, video_url
in clips
:
718 yield self
.url_result(
719 compat_urlparse
.urljoin(base_url
, video_url
),
720 VimeoIE
.ie_key(), video_id
=video_id
)
721 # More relaxed fallback
723 for video_id
in re
.findall(r
'id=["\']clip_(\d
+)', webpage):
724 yield self.url_result(
725 'https
://vimeo
.com
/%s' % video_id,
726 VimeoIE.ie_key(), video_id=video_id)
728 if re.search(self._MORE_PAGES_INDICATOR, webpage, re.DOTALL) is None:
731 def _extract_videos(self, list_id, base_url):
732 title_and_entries = self._title_and_entries(list_id, base_url)
733 list_title = next(title_and_entries)
734 return self.playlist_result(title_and_entries, list_id, list_title)
736 def _real_extract(self, url):
737 mobj = re.match(self._VALID_URL, url)
738 channel_id = mobj.group('id')
739 return self._extract_videos(channel_id, 'https
://vimeo
.com
/channels
/%s' % channel_id)
742 class VimeoUserIE(VimeoChannelIE):
743 IE_NAME = 'vimeo
:user
'
744 _VALID_URL = r'https
://vimeo\
.com
/(?
!(?
:[0-9]+|watchlater
)(?
:$|
[?
#/]))(?P<name>[^/]+)(?:/videos|[#?]|$)'
745 _TITLE_RE
= r
'<a[^>]+?class="user">([^<>]+?)</a>'
747 'url': 'https://vimeo.com/nkistudio/videos',
752 'playlist_mincount': 66,
755 def _real_extract(self
, url
):
756 mobj
= re
.match(self
._VALID
_URL
, url
)
757 name
= mobj
.group('name')
758 return self
._extract
_videos
(name
, 'https://vimeo.com/%s' % name
)
761 class VimeoAlbumIE(VimeoChannelIE
):
762 IE_NAME
= 'vimeo:album'
763 _VALID_URL
= r
'https://vimeo\.com/album/(?P<id>\d+)(?:$|[?#]|/(?!video))'
764 _TITLE_RE
= r
'<header id="page_header">\n\s*<h1>(.*?)</h1>'
766 'url': 'https://vimeo.com/album/2632481',
769 'title': 'Staff Favorites: November 2013',
771 'playlist_mincount': 13,
773 'note': 'Password-protected album',
774 'url': 'https://vimeo.com/album/3253534',
781 'videopassword': 'youtube-dl',
784 'url': 'https://vimeo.com/album/2632481/sort:plays/format:thumbnail',
785 'only_matching': True,
787 # TODO: respect page number
788 'url': 'https://vimeo.com/album/2632481/page:2/sort:plays/format:thumbnail',
789 'only_matching': True,
792 def _page_url(self
, base_url
, pagenum
):
793 return '%s/page:%d/' % (base_url
, pagenum
)
795 def _real_extract(self
, url
):
796 album_id
= self
._match
_id
(url
)
797 return self
._extract
_videos
(album_id
, 'https://vimeo.com/album/%s' % album_id
)
800 class VimeoGroupsIE(VimeoAlbumIE
):
801 IE_NAME
= 'vimeo:group'
802 _VALID_URL
= r
'https://vimeo\.com/groups/(?P<name>[^/]+)(?:/(?!videos?/\d+)|$)'
804 'url': 'https://vimeo.com/groups/rolexawards',
807 'title': 'Rolex Awards for Enterprise',
809 'playlist_mincount': 73,
812 def _extract_list_title(self
, webpage
):
813 return self
._og
_search
_title
(webpage
)
815 def _real_extract(self
, url
):
816 mobj
= re
.match(self
._VALID
_URL
, url
)
817 name
= mobj
.group('name')
818 return self
._extract
_videos
(name
, 'https://vimeo.com/groups/%s' % name
)
821 class VimeoReviewIE(VimeoBaseInfoExtractor
):
822 IE_NAME
= 'vimeo:review'
823 IE_DESC
= 'Review pages on vimeo'
824 _VALID_URL
= r
'https://vimeo\.com/[^/]+/review/(?P<id>[^/]+)'
826 'url': 'https://vimeo.com/user21297594/review/75524534/3c257a1b5d',
827 'md5': 'c507a72f780cacc12b2248bb4006d253',
831 'title': "DICK HARDWICK 'Comedian'",
832 'uploader': 'Richard Hardwick',
833 'uploader_id': 'user21297594',
836 'note': 'video player needs Referer',
837 'url': 'https://vimeo.com/user22258446/review/91613211/13f927e053',
838 'md5': '6295fdab8f4bf6a002d058b2c6dce276',
842 'title': 're:(?i)^Death by dogma versus assembling agile . Sander Hoogendoorn',
843 'uploader': 'DevWeek Events',
845 'thumbnail': 're:^https?://.*\.jpg$',
846 'uploader_id': 'user22258446',
849 'note': 'Password protected',
850 'url': 'https://vimeo.com/user37284429/review/138823582/c4d865efde',
854 'title': 'EFFICIENT PICKUP MASTERCLASS MODULE 1',
856 'uploader_id': 'user37284429',
859 'videopassword': 'holygrail',
861 'skip': 'video gone',
864 def _real_initialize(self
):
867 def _get_config_url(self
, webpage_url
, video_id
, video_password_verified
=False):
868 webpage
= self
._download
_webpage
(webpage_url
, video_id
)
869 data
= self
._parse
_json
(self
._search
_regex
(
870 r
'window\s*=\s*_extend\(window,\s*({.+?})\);', webpage
, 'data',
871 default
=NO_DEFAULT
if video_password_verified
else '{}'), video_id
)
872 config_url
= data
.get('vimeo_esi', {}).get('config', {}).get('configUrl')
873 if config_url
is None:
874 self
._verify
_video
_password
(webpage_url
, video_id
, webpage
)
875 config_url
= self
._get
_config
_url
(
876 webpage_url
, video_id
, video_password_verified
=True)
879 def _real_extract(self
, url
):
880 video_id
= self
._match
_id
(url
)
881 config_url
= self
._get
_config
_url
(url
, video_id
)
882 config
= self
._download
_json
(config_url
, video_id
)
883 info_dict
= self
._parse
_config
(config
, video_id
)
884 self
._vimeo
_sort
_formats
(info_dict
['formats'])
885 info_dict
['id'] = video_id
889 class VimeoWatchLaterIE(VimeoChannelIE
):
890 IE_NAME
= 'vimeo:watchlater'
891 IE_DESC
= 'Vimeo watch later list, "vimeowatchlater" keyword (requires authentication)'
892 _VALID_URL
= r
'https://vimeo\.com/(?:home/)?watchlater|:vimeowatchlater'
893 _TITLE
= 'Watch Later'
894 _LOGIN_REQUIRED
= True
896 'url': 'https://vimeo.com/watchlater',
897 'only_matching': True,
900 def _real_initialize(self
):
903 def _page_url(self
, base_url
, pagenum
):
904 url
= '%s/page:%d/' % (base_url
, pagenum
)
905 request
= sanitized_Request(url
)
906 # Set the header to get a partial html page with the ids,
907 # the normal page doesn't contain them.
908 request
.add_header('X-Requested-With', 'XMLHttpRequest')
911 def _real_extract(self
, url
):
912 return self
._extract
_videos
('watchlater', 'https://vimeo.com/watchlater')
915 class VimeoLikesIE(InfoExtractor
):
916 _VALID_URL
= r
'https://(?:www\.)?vimeo\.com/user(?P<id>[0-9]+)/likes/?(?:$|[?#]|sort:)'
917 IE_NAME
= 'vimeo:likes'
918 IE_DESC
= 'Vimeo user likes'
920 'url': 'https://vimeo.com/user755559/likes/',
921 'playlist_mincount': 293,
923 'id': 'user755559_likes',
924 'description': 'See all the videos urza likes',
925 'title': 'Videos urza likes',
929 def _real_extract(self
, url
):
930 user_id
= self
._match
_id
(url
)
931 webpage
= self
._download
_webpage
(url
, user_id
)
932 page_count
= self
._int
(
934 r
'''(?x)<li><a\s+href="[^"]+"\s+data-page="([0-9]+)">
935 .*?</a></li>\s*<li\s+class="pagination_next">
936 ''', webpage
, 'page count'),
937 'page count', fatal
=True)
939 title
= self
._html
_search
_regex
(
940 r
'(?s)<h1>(.+?)</h1>', webpage
, 'title', fatal
=False)
941 description
= self
._html
_search
_meta
('description', webpage
)
944 page_url
= 'https://vimeo.com/user%s/likes/page:%d/sort:date' % (
946 webpage
= self
._download
_webpage
(
948 note
='Downloading page %d/%d' % (idx
+ 1, page_count
))
949 video_list
= self
._search
_regex
(
950 r
'(?s)<ol class="js-browse_list[^"]+"[^>]*>(.*?)</ol>',
951 webpage
, 'video content')
953 r
'<li[^>]*>\s*<a\s+href="([^"]+)"', video_list
)
957 'url': compat_urlparse
.urljoin(page_url
, path
),
960 pl
= InAdvancePagedList(_get_page
, page_count
, PAGE_SIZE
)
964 'id': 'user%s_likes' % user_id
,
966 'description': description
,