]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vimeo.py
2 from __future__
import unicode_literals
9 from .common
import InfoExtractor
10 from ..compat
import (
37 class VimeoBaseInfoExtractor(InfoExtractor
):
38 _NETRC_MACHINE
= 'vimeo'
39 _LOGIN_REQUIRED
= False
40 _LOGIN_URL
= 'https://vimeo.com/log_in'
43 username
, password
= self
._get
_login
_info
()
45 if self
._LOGIN
_REQUIRED
:
46 raise ExtractorError('No login info available, needed for using %s.' % self
.IE_NAME
, expected
=True)
48 webpage
= self
._download
_webpage
(
49 self
._LOGIN
_URL
, None, 'Downloading login page')
50 token
, vuid
= self
._extract
_xsrft
_and
_vuid
(webpage
)
58 self
._set
_vimeo
_cookie
('vuid', vuid
)
60 self
._download
_webpage
(
61 self
._LOGIN
_URL
, None, 'Logging in',
62 data
=urlencode_postdata(data
), headers
={
63 'Content-Type': 'application/x-www-form-urlencoded',
64 'Referer': self
._LOGIN
_URL
,
66 except ExtractorError
as e
:
67 if isinstance(e
.cause
, compat_HTTPError
) and e
.cause
.code
== 418:
69 'Unable to log in: bad username or password',
71 raise ExtractorError('Unable to log in')
73 def _verify_video_password(self
, url
, video_id
, webpage
):
74 password
= self
._downloader
.params
.get('videopassword')
76 raise ExtractorError('This video is protected by a password, use the --video-password option', expected
=True)
77 token
, vuid
= self
._extract
_xsrft
_and
_vuid
(webpage
)
78 data
= urlencode_postdata({
82 if url
.startswith('http://'):
83 # vimeo only supports https now, but the user can give an http url
84 url
= url
.replace('http://', 'https://')
85 password_request
= sanitized_Request(url
+ '/password', data
)
86 password_request
.add_header('Content-Type', 'application/x-www-form-urlencoded')
87 password_request
.add_header('Referer', url
)
88 self
._set
_vimeo
_cookie
('vuid', vuid
)
89 return self
._download
_webpage
(
90 password_request
, video_id
,
91 'Verifying the password', 'Wrong password')
93 def _extract_xsrft_and_vuid(self
, webpage
):
94 xsrft
= self
._search
_regex
(
95 r
'(?:(?P<q1>["\'])xsrft(?P
=q1
)\s
*:|xsrft\s
*[=:])\s
*(?P
<q
>["\'])(?P<xsrft>.+?)(?P=q)',
96 webpage, 'login token', group='xsrft')
97 vuid = self._search_regex(
98 r'["\']vuid
["\']\s*:\s*(["\'])(?P
<vuid
>.+?
)\
1',
99 webpage, 'vuid
', group='vuid
')
102 def _set_vimeo_cookie(self, name, value):
103 self._set_cookie('vimeo
.com
', name, value)
105 def _vimeo_sort_formats(self, formats):
106 # Bitrates are completely broken. Single m3u8 may contain entries in kbps and bps
107 # at the same time without actual units specified. This lead to wrong sorting.
108 self._sort_formats(formats, field_preference=('preference
', 'height
', 'width
', 'fps
', 'tbr
', 'format_id
'))
110 def _parse_config(self, config, video_id):
111 video_data = config['video
']
112 video_title = video_data['title
']
113 live_event = video_data.get('live_event
') or {}
114 is_live = live_event.get('status
') == 'started
'
117 config_files = video_data.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
')),
131 # TODO: fix handling of 308 status code returned for live archive manifest requests
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
' if is_live else '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 if 'json
=1' in m_url:
155 real_m_url = (self._download_json(m_url, video_id, fatal=False) or {}).get('url
')
158 mpd_formats = self._extract_mpd_formats(
159 m_url.replace('/master
.json
', '/master
.mpd
'), video_id, f_id,
160 'Downloading
%s MPD information
' % cdn_name,
162 for f in mpd_formats:
163 if f.get('vcodec
') == 'none
':
164 f['preference
'] = -50
165 elif f.get('acodec
') == 'none
':
166 f['preference
'] = -40
167 formats.extend(mpd_formats)
169 live_archive = live_event.get('archive
') or {}
170 live_archive_source_url = live_archive.get('source_url
')
171 if live_archive_source_url and live_archive.get('status
') == 'done
':
173 'format_id
': 'live
-archive
-source
',
174 'url
': live_archive_source_url,
179 text_tracks = config['request
'].get('text_tracks
')
181 for tt in text_tracks:
182 subtitles[tt['lang
']] = [{
184 'url
': 'https
://vimeo
.com
' + tt['url
'],
189 for key, thumb in video_data.get('thumbs
', {}).items():
192 'width
': int_or_none(key),
195 thumbnail = video_data.get('thumbnail
')
201 owner = video_data.get('owner
') or {}
202 video_uploader_url = owner.get('url
')
205 'title
': self._live_title(video_title) if is_live else video_title,
206 'uploader
': owner.get('name
'),
207 'uploader_id
': video_uploader_url.split('/')[-1] if video_uploader_url else None,
208 'uploader_url
': video_uploader_url,
209 'thumbnails
': thumbnails,
210 'duration
': int_or_none(video_data.get('duration
')),
212 'subtitles
': subtitles,
216 def _extract_original_format(self, url, video_id):
217 download_data = self._download_json(
218 url, video_id, fatal=False,
219 query={'action
': 'load_download_config
'},
220 headers={'X
-Requested
-With
': 'XMLHttpRequest
'})
222 source_file = download_data.get('source_file
')
223 if isinstance(source_file, dict):
224 download_url = source_file.get('download_url
')
225 if download_url and not source_file.get('is_cold
') and not source_file.get('is_defrosting
'):
226 source_name = source_file.get('public_name
', 'Original
')
227 if self._is_valid_url(download_url, video_id, '%s video
' % source_name):
229 source_file, lambda x: x['extension
'],
230 compat_str) or determine_ext(
231 download_url, None) or 'mp4
').lower()
235 'width
': int_or_none(source_file.get('width
')),
236 'height
': int_or_none(source_file.get('height
')),
237 'filesize
': parse_filesize(source_file.get('size
')),
238 'format_id
': source_name,
243 class VimeoIE(VimeoBaseInfoExtractor):
244 """Information extractor for vimeo.com."""
246 # _VALID_URL matches Vimeo URLs
247 _VALID_URL = r'''(?x)
256 vimeo(?P<pro>pro)?\.com/
257 (?!(?:channels|album)/[^/?#]+/?(?:$|[?#])|[^/]+/review/|ondemand/)
262 moogaloop\.swf)\?clip_id=
267 /?(?:[?&].*)?(?:[#].*)?$
272 'url
': 'http
://vimeo
.com
/56015672#at=0',
273 'md5': '8879b6cc097e987f02484baf890129e5',
277 'title': "youtube-dl test video - \u2605 \" ' \u5e78 / \\ \u00e4 \u21ad \U0001d550",
278 'description': 'md5:509a9ad5c9bf97c60faee9203aca4479',
279 'timestamp': 1355990239,
280 'upload_date': '20121220',
281 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/user7108434',
282 'uploader_id': 'user7108434',
283 'uploader': 'Filippo Valsorda',
289 'url': 'http://vimeopro.com/openstreetmapus/state-of-the-map-us-2013/video/68093876',
290 'md5': '3b5ca6aa22b60dfeeadf50b72e44ed82',
291 'note': 'Vimeo Pro video (#1197)',
295 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/openstreetmapus',
296 'uploader_id': 'openstreetmapus',
297 'uploader': 'OpenStreetMap US',
298 'title': 'Andy Allan - Putting the Carto into OpenStreetMap Cartography',
299 'description': 'md5:fd69a7b8d8c34a4e1d2ec2e4afd6ec30',
304 'url': 'http://player.vimeo.com/video/54469442',
305 'md5': '619b811a4417aa4abe78dc653becf511',
306 'note': 'Videos that embed the url in the player page',
310 'title': 'Kathy Sierra: Building the minimum Badass User, Business of Software 2012',
311 'uploader': 'The BLN & Business of Software',
312 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/theblnbusinessofsoftware',
313 'uploader_id': 'theblnbusinessofsoftware',
319 'url': 'http://vimeo.com/68375962',
320 'md5': 'aaf896bdb7ddd6476df50007a0ac0ae7',
321 'note': 'Video protected with password',
325 'title': 'youtube-dl password protected test video',
326 'timestamp': 1371200155,
327 'upload_date': '20130614',
328 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/user18948128',
329 'uploader_id': 'user18948128',
330 'uploader': 'Jaime MarquĆnez FerrĆ”ndiz',
332 'description': 'md5:dca3ea23adb29ee387127bc4ddfce63f',
335 'videopassword': 'youtube-dl',
339 'url': 'http://vimeo.com/channels/keypeele/75629013',
340 'md5': '2f86a05afe9d7abc0b9126d229bbe15d',
344 'title': 'Key & Peele: Terrorist Interrogation',
345 'description': 'md5:8678b246399b070816b12313e8b4eb5c',
346 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/atencio',
347 'uploader_id': 'atencio',
348 'uploader': 'Peter Atencio',
349 'channel_id': 'keypeele',
350 'channel_url': r
're:https?://(?:www\.)?vimeo\.com/channels/keypeele',
351 'timestamp': 1380339469,
352 'upload_date': '20130928',
355 'expected_warnings': ['Unable to download JSON metadata'],
358 'url': 'http://vimeo.com/76979871',
359 'note': 'Video with subtitles',
363 'title': 'The New Vimeo Player (You Know, For Videos)',
364 'description': 'md5:2ec900bf97c3f389378a96aee11260ea',
365 'timestamp': 1381846109,
366 'upload_date': '20131015',
367 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/staff',
368 'uploader_id': 'staff',
369 'uploader': 'Vimeo Staff',
374 # from https://www.ouya.tv/game/Pier-Solar-and-the-Great-Architects/
375 'url': 'https://player.vimeo.com/video/98044508',
376 'note': 'The js code contains assignments to the same variable as the config',
380 'title': 'Pier Solar OUYA Official Trailer',
381 'uploader': 'Tulio GonƧalves',
382 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/user28849593',
383 'uploader_id': 'user28849593',
387 # contains original format
388 'url': 'https://vimeo.com/33951933',
389 'md5': '53c688fa95a55bf4b7293d37a89c5c53',
393 'title': 'FOX CLASSICS - Forever Classic ID - A Full Minute',
394 'uploader': 'The DMCI',
395 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/dmci',
396 'uploader_id': 'dmci',
397 'timestamp': 1324343742,
398 'upload_date': '20111220',
399 'description': 'md5:ae23671e82d05415868f7ad1aec21147',
403 # only available via https://vimeo.com/channels/tributes/6213729 and
404 # not via https://vimeo.com/6213729
405 'url': 'https://vimeo.com/channels/tributes/6213729',
409 'title': 'Vimeo Tribute: The Shining',
410 'uploader': 'Casey Donahue',
411 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/caseydonahue',
412 'uploader_id': 'caseydonahue',
413 'channel_url': r
're:https?://(?:www\.)?vimeo\.com/channels/tributes',
414 'channel_id': 'tributes',
415 'timestamp': 1250886430,
416 'upload_date': '20090821',
417 'description': 'md5:bdbf314014e58713e6e5b66eb252f4a6',
420 'skip_download': True,
422 'expected_warnings': ['Unable to download JSON metadata'],
425 # redirects to ondemand extractor and should be passed through it
426 # for successful extraction
427 'url': 'https://vimeo.com/73445910',
431 'title': 'The Reluctant Revolutionary',
432 'uploader': '10Ft Films',
433 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/tenfootfilms',
434 'uploader_id': 'tenfootfilms',
437 'skip_download': True,
441 'url': 'http://player.vimeo.com/video/68375962',
442 'md5': 'aaf896bdb7ddd6476df50007a0ac0ae7',
446 'title': 'youtube-dl password protected test video',
447 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/user18948128',
448 'uploader_id': 'user18948128',
449 'uploader': 'Jaime MarquĆnez FerrĆ”ndiz',
453 'videopassword': 'youtube-dl',
457 'url': 'http://vimeo.com/moogaloop.swf?clip_id=2539741',
458 'only_matching': True,
461 'url': 'https://vimeo.com/109815029',
462 'note': 'Video not completely processed, "failed" seed status',
463 'only_matching': True,
466 'url': 'https://vimeo.com/groups/travelhd/videos/22439234',
467 'only_matching': True,
470 'url': 'https://vimeo.com/album/2632481/video/79010983',
471 'only_matching': True,
474 # source file returns 403: Forbidden
475 'url': 'https://vimeo.com/7809605',
476 'only_matching': True,
479 'url': 'https://vimeo.com/160743502/abd0e13fb4',
480 'only_matching': True,
482 # https://gettingthingsdone.com/workflowmap/
483 # vimeo embed with check-password page protected by Referer header
487 def _smuggle_referrer(url
, referrer_url
):
488 return smuggle_url(url
, {'http_headers': {'Referer': referrer_url
}})
491 def _extract_urls(url
, webpage
):
493 # Look for embedded (iframe) Vimeo player
494 for mobj
in re
.finditer(
495 r
'<iframe[^>]+?src=(["\'])(?P
<url
>(?
:https?
:)?
//player\
.vimeo\
.com
/video
/\d
+.*?
)\
1',
497 urls.append(VimeoIE._smuggle_referrer(unescapeHTML(mobj.group('url
')), url))
499 # Look for embedded (swf embed) Vimeo player
500 r'<embed
[^
>]+?src
=(["\'])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)\1',
501 # Look more for non-standard embedded Vimeo player
502 r'<video[^>]+src=(["\'])(?P
<url
>(?
:https?
:)?
//(?
:www\
.)?vimeo\
.com
/[0-9]+)\
1',
504 for embed_re in PLAIN_EMBED_RE:
505 for mobj in re.finditer(embed_re, webpage):
506 urls.append(mobj.group('url
'))
510 def _extract_url(url, webpage):
511 urls = VimeoIE._extract_urls(url, webpage)
512 return urls[0] if urls else None
514 def _verify_player_video_password(self, url, video_id, headers):
515 password = self._downloader.params.get('videopassword
')
517 raise ExtractorError('This video
is protected by a password
, use the
--video
-password option
')
518 data = urlencode_postdata({
519 'password
': base64.b64encode(password.encode()),
521 headers = merge_dicts(headers, {
522 'Content
-Type
': 'application
/x
-www
-form
-urlencoded
',
524 checked = self._download_json(
525 url + '/check
-password
', video_id,
526 'Verifying the password
', data=data, headers=headers)
528 raise ExtractorError('Wrong video password
', expected=True)
531 def _real_initialize(self):
534 def _real_extract(self, url):
535 url, data = unsmuggle_url(url, {})
536 headers = std_headers.copy()
537 if 'http_headers
' in data:
538 headers.update(data['http_headers
'])
539 if 'Referer
' not in headers:
540 headers['Referer
'] = url
542 channel_id = self._search_regex(
543 r'vimeo\
.com
/channels
/([^
/]+)', url, 'channel
id', default=None)
545 # Extract ID from URL
546 mobj = re.match(self._VALID_URL, url)
547 video_id = mobj.group('id')
549 if mobj.group('pro
'):
550 # some videos require portfolio_id to be present in player url
551 # https://github.com/ytdl-org/youtube-dl/issues/20070
552 url = self._extract_url(url, self._download_webpage(url, video_id))
553 elif mobj.group('player
'):
554 url = 'https
://player
.vimeo
.com
/video
/' + video_id
555 elif any(p in url for p in ('play_redirect_hls
', 'moogaloop
.swf
')):
556 url = 'https
://vimeo
.com
/' + video_id
558 # Retrieve video webpage to extract further information
559 request = sanitized_Request(url, headers=headers)
561 webpage, urlh = self._download_webpage_handle(request, video_id)
562 redirect_url = compat_str(urlh.geturl())
563 # Some URLs redirect to ondemand can't be extracted
with
564 # this extractor right away thus should be passed through
565 # ondemand extractor (e.g. https://vimeo.com/73445910)
566 if VimeoOndemandIE
.suitable(redirect_url
):
567 return self
.url_result(redirect_url
, VimeoOndemandIE
.ie_key())
568 except ExtractorError
as ee
:
569 if isinstance(ee
.cause
, compat_HTTPError
) and ee
.cause
.code
== 403:
570 errmsg
= ee
.cause
.read()
571 if b
'Because of its privacy settings, this video cannot be played here' in errmsg
:
572 raise ExtractorError(
573 'Cannot download embed-only video without embedding '
574 'URL. Please call youtube-dl with the URL of the page '
575 'that embeds this video.',
579 # Now we begin extracting as much information as we can from what we
580 # retrieved. First we extract the information common to all extractors,
581 # and latter we extract those that are Vimeo specific.
582 self
.report_extraction(video_id
)
584 vimeo_config
= self
._search
_regex
(
585 r
'vimeo\.config\s*=\s*(?:({.+?})|_extend\([^,]+,\s+({.+?})\));', webpage
,
586 'vimeo config', default
=None)
588 seed_status
= self
._parse
_json
(vimeo_config
, video_id
).get('seed_status', {})
589 if seed_status
.get('state') == 'failed':
590 raise ExtractorError(
591 '%s said: %s' % (self
.IE_NAME
, seed_status
['title']),
597 # Extract the config JSON
600 config_url
= self
._html
_search
_regex
(
601 r
' data-config-url="(.+?)"', webpage
,
602 'config URL', default
=None)
604 # Sometimes new react-based page is served instead of old one that require
605 # different config URL extraction approach (see
606 # https://github.com/ytdl-org/youtube-dl/pull/7209)
607 vimeo_clip_page_config
= self
._search
_regex
(
608 r
'vimeo\.clip_page_config\s*=\s*({.+?});', webpage
,
609 'vimeo clip page config')
610 page_config
= self
._parse
_json
(vimeo_clip_page_config
, video_id
)
611 config_url
= page_config
['player']['config_url']
612 cc_license
= page_config
.get('cc_license')
614 page_config
, lambda x
: x
['clip']['uploaded_on'],
616 config_json
= self
._download
_webpage
(config_url
, video_id
)
617 config
= json
.loads(config_json
)
618 except RegexNotFoundError
:
619 # For pro videos or player.vimeo.com urls
620 # We try to find out to which variable is assigned the config dic
621 m_variable_name
= re
.search(r
'(\w)\.video\.id', webpage
)
622 if m_variable_name
is not None:
623 config_re
= [r
'%s=({[^}].+?});' % re
.escape(m_variable_name
.group(1))]
625 config_re
= [r
' = {config:({.+?}),assets:', r
'(?:[abc])=({.+?});']
626 config_re
.append(r
'\bvar\s+r\s*=\s*({.+?})\s*;')
627 config_re
.append(r
'\bconfig\s*=\s*({.+?})\s*;')
628 config
= self
._search
_regex
(config_re
, webpage
, 'info section',
630 config
= json
.loads(config
)
631 except Exception as e
:
632 if re
.search('The creator of this video has not given you permission to embed it on this domain.', webpage
):
633 raise ExtractorError('The author has restricted the access to this video, try with the "--referer" option')
635 if re
.search(r
'<form[^>]+?id="pw_form"', webpage
) is not None:
636 if '_video_password_verified' in data
:
637 raise ExtractorError('video password verification failed!')
638 self
._verify
_video
_password
(redirect_url
, video_id
, webpage
)
639 return self
._real
_extract
(
640 smuggle_url(redirect_url
, {'_video_password_verified': 'verified'}))
642 raise ExtractorError('Unable to extract info section',
645 if config
.get('view') == 4:
646 config
= self
._verify
_player
_video
_password
(redirect_url
, video_id
, headers
)
648 vod
= config
.get('video', {}).get('vod', {})
651 if '>You rented this title.<' in webpage
:
653 if config
.get('user', {}).get('purchased'):
655 for purchase_option
in vod
.get('purchase_options', []):
656 if purchase_option
.get('purchased'):
658 label
= purchase_option
.get('label_string')
659 if label
and (label
.startswith('You rented this') or label
.endswith(' remaining')):
663 if is_rented() and vod
.get('is_trailer'):
664 feature_id
= vod
.get('feature_id')
665 if feature_id
and not data
.get('force_feature_id', False):
666 return self
.url_result(smuggle_url(
667 'https://player.vimeo.com/player/%s' % feature_id
,
668 {'force_feature_id': True}), 'Vimeo')
670 # Extract video description
672 video_description
= self
._html
_search
_regex
(
673 r
'(?s)<div\s+class="[^"]*description[^"]*"[^>]*>(.*?)</div>',
674 webpage
, 'description', default
=None)
675 if not video_description
:
676 video_description
= self
._html
_search
_meta
(
677 'description', webpage
, default
=None)
678 if not video_description
and mobj
.group('pro'):
679 orig_webpage
= self
._download
_webpage
(
681 note
='Downloading webpage for description',
684 video_description
= self
._html
_search
_meta
(
685 'description', orig_webpage
, default
=None)
686 if not video_description
and not mobj
.group('player'):
687 self
._downloader
.report_warning('Cannot find video description')
689 # Extract upload date
691 timestamp
= self
._search
_regex
(
692 r
'<time[^>]+datetime="([^"]+)"', webpage
,
693 'timestamp', default
=None)
696 view_count
= int(self
._search
_regex
(r
'UserPlays:(\d+)', webpage
, 'view count'))
697 like_count
= int(self
._search
_regex
(r
'UserLikes:(\d+)', webpage
, 'like count'))
698 comment_count
= int(self
._search
_regex
(r
'UserComments:(\d+)', webpage
, 'comment count'))
699 except RegexNotFoundError
:
700 # This info is only available in vimeo.com/{id} urls
707 source_format
= self
._extract
_original
_format
(
708 'https://vimeo.com/' + video_id
, video_id
)
710 formats
.append(source_format
)
712 info_dict_config
= self
._parse
_config
(config
, video_id
)
713 formats
.extend(info_dict_config
['formats'])
714 self
._vimeo
_sort
_formats
(formats
)
716 json_ld
= self
._search
_json
_ld
(webpage
, video_id
, default
={})
719 cc_license
= self
._search
_regex
(
720 r
'<link[^>]+rel=["\']license
["\'][^>]+href=(["\'])(?P
<license
>(?
:(?
!\
1).)+)\
1',
721 webpage, 'license
', default=None, group='license
')
723 channel_url = 'https
://vimeo
.com
/channels
/%s' % channel_id if channel_id else None
728 'timestamp
': unified_timestamp(timestamp),
729 'description
': video_description,
731 'view_count
': view_count,
732 'like_count
': like_count,
733 'comment_count
': comment_count,
734 'license
': cc_license,
735 'channel_id
': channel_id,
736 'channel_url
': channel_url,
739 info_dict = merge_dicts(info_dict, info_dict_config, json_ld)
744 class VimeoOndemandIE(VimeoBaseInfoExtractor):
745 IE_NAME = 'vimeo
:ondemand
'
746 _VALID_URL = r'https?
://(?
:www\
.)?vimeo\
.com
/ondemand
/(?P
<id>[^
/?
#&]+)'
748 # ondemand video not available via https://vimeo.com/id
749 'url': 'https://vimeo.com/ondemand/20704',
750 'md5': 'c424deda8c7f73c1dfb3edd7630e2f35',
754 'title': '×××¢××× - ×××× ×××Ŗ× ×¤××××',
755 'uploader': '×× ×”×Ø×××',
756 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/gumfilms',
757 'uploader_id': 'gumfilms',
760 'format': 'best[protocol=https]',
763 # requires Referer to be passed along with og:video:url
764 'url': 'https://vimeo.com/ondemand/36938/126682985',
768 'title': 'RƤvlock, rƤtt lƤte pƄ rƤtt plats',
769 'uploader': 'Lindroth & Norin',
770 'uploader_url': r
're:https?://(?:www\.)?vimeo\.com/user14430847',
771 'uploader_id': 'user14430847',
774 'skip_download': True,
777 'url': 'https://vimeo.com/ondemand/nazmaalik',
778 'only_matching': True,
780 'url': 'https://vimeo.com/ondemand/141692381',
781 'only_matching': True,
783 'url': 'https://vimeo.com/ondemand/thelastcolony/150274832',
784 'only_matching': True,
787 def _real_extract(self
, url
):
788 video_id
= self
._match
_id
(url
)
789 webpage
= self
._download
_webpage
(url
, video_id
)
790 return self
.url_result(
791 # Some videos require Referer to be passed along with og:video:url
792 # similarly to generic vimeo embeds (e.g.
793 # https://vimeo.com/ondemand/36938/126682985).
794 VimeoIE
._smuggle
_referrer
(self
._og
_search
_video
_url
(webpage
), url
),
798 class VimeoChannelIE(VimeoBaseInfoExtractor
):
799 IE_NAME
= 'vimeo:channel'
800 _VALID_URL
= r
'https://vimeo\.com/channels/(?P<id>[^/?#]+)/?(?:$|[?#])'
801 _MORE_PAGES_INDICATOR
= r
'<a.+?rel="next"'
803 _TITLE_RE
= r
'<link rel="alternate"[^>]+?title="(.*?)"'
805 'url': 'https://vimeo.com/channels/tributes',
808 'title': 'Vimeo Tributes',
810 'playlist_mincount': 25,
813 def _page_url(self
, base_url
, pagenum
):
814 return '%s/videos/page:%d/' % (base_url
, pagenum
)
816 def _extract_list_title(self
, webpage
):
817 return self
._TITLE
or self
._html
_search
_regex
(self
._TITLE
_RE
, webpage
, 'list title')
819 def _login_list_password(self
, page_url
, list_id
, webpage
):
820 login_form
= self
._search
_regex
(
821 r
'(?s)<form[^>]+?id="pw_form"(.*?)</form>',
822 webpage
, 'login form', default
=None)
826 password
= self
._downloader
.params
.get('videopassword')
828 raise ExtractorError('This album is protected by a password, use the --video-password option', expected
=True)
829 fields
= self
._hidden
_inputs
(login_form
)
830 token
, vuid
= self
._extract
_xsrft
_and
_vuid
(webpage
)
831 fields
['token'] = token
832 fields
['password'] = password
833 post
= urlencode_postdata(fields
)
834 password_path
= self
._search
_regex
(
835 r
'action="([^"]+)"', login_form
, 'password URL')
836 password_url
= compat_urlparse
.urljoin(page_url
, password_path
)
837 password_request
= sanitized_Request(password_url
, post
)
838 password_request
.add_header('Content-type', 'application/x-www-form-urlencoded')
839 self
._set
_vimeo
_cookie
('vuid', vuid
)
840 self
._set
_vimeo
_cookie
('xsrft', token
)
842 return self
._download
_webpage
(
843 password_request
, list_id
,
844 'Verifying the password', 'Wrong password')
846 def _title_and_entries(self
, list_id
, base_url
):
847 for pagenum
in itertools
.count(1):
848 page_url
= self
._page
_url
(base_url
, pagenum
)
849 webpage
= self
._download
_webpage
(
851 'Downloading page %s' % pagenum
)
854 webpage
= self
._login
_list
_password
(page_url
, list_id
, webpage
)
855 yield self
._extract
_list
_title
(webpage
)
857 # Try extracting href first since not all videos are available via
858 # short https://vimeo.com/id URL (e.g. https://vimeo.com/channels/tributes/6213729)
860 r
'id="clip_(\d+)"[^>]*>\s*<a[^>]+href="(/(?:[^/]+/)*\1)(?:[^>]+\btitle="([^"]+)")?', webpage
)
862 for video_id
, video_url
, video_title
in clips
:
863 yield self
.url_result(
864 compat_urlparse
.urljoin(base_url
, video_url
),
865 VimeoIE
.ie_key(), video_id
=video_id
, video_title
=video_title
)
866 # More relaxed fallback
868 for video_id
in re
.findall(r
'id=["\']clip_(\d
+)', webpage):
869 yield self.url_result(
870 'https
://vimeo
.com
/%s' % video_id,
871 VimeoIE.ie_key(), video_id=video_id)
873 if re.search(self._MORE_PAGES_INDICATOR, webpage, re.DOTALL) is None:
876 def _extract_videos(self, list_id, base_url):
877 title_and_entries = self._title_and_entries(list_id, base_url)
878 list_title = next(title_and_entries)
879 return self.playlist_result(title_and_entries, list_id, list_title)
881 def _real_extract(self, url):
882 mobj = re.match(self._VALID_URL, url)
883 channel_id = mobj.group('id')
884 return self._extract_videos(channel_id, 'https
://vimeo
.com
/channels
/%s' % channel_id)
887 class VimeoUserIE(VimeoChannelIE):
888 IE_NAME = 'vimeo
:user
'
889 _VALID_URL = r'https
://vimeo\
.com
/(?
!(?
:[0-9]+|watchlater
)(?
:$|
[?
#/]))(?P<name>[^/]+)(?:/videos|[#?]|$)'
890 _TITLE_RE
= r
'<a[^>]+?class="user">([^<>]+?)</a>'
892 'url': 'https://vimeo.com/nkistudio/videos',
897 'playlist_mincount': 66,
900 def _real_extract(self
, url
):
901 mobj
= re
.match(self
._VALID
_URL
, url
)
902 name
= mobj
.group('name')
903 return self
._extract
_videos
(name
, 'https://vimeo.com/%s' % name
)
906 class VimeoAlbumIE(VimeoChannelIE
):
907 IE_NAME
= 'vimeo:album'
908 _VALID_URL
= r
'https://vimeo\.com/album/(?P<id>\d+)(?:$|[?#]|/(?!video))'
909 _TITLE_RE
= r
'<header id="page_header">\n\s*<h1>(.*?)</h1>'
911 'url': 'https://vimeo.com/album/2632481',
914 'title': 'Staff Favorites: November 2013',
916 'playlist_mincount': 13,
918 'note': 'Password-protected album',
919 'url': 'https://vimeo.com/album/3253534',
926 'videopassword': 'youtube-dl',
929 'url': 'https://vimeo.com/album/2632481/sort:plays/format:thumbnail',
930 'only_matching': True,
932 # TODO: respect page number
933 'url': 'https://vimeo.com/album/2632481/page:2/sort:plays/format:thumbnail',
934 'only_matching': True,
937 def _page_url(self
, base_url
, pagenum
):
938 return '%s/page:%d/' % (base_url
, pagenum
)
940 def _real_extract(self
, url
):
941 album_id
= self
._match
_id
(url
)
942 return self
._extract
_videos
(album_id
, 'https://vimeo.com/album/%s' % album_id
)
945 class VimeoGroupsIE(VimeoAlbumIE
):
946 IE_NAME
= 'vimeo:group'
947 _VALID_URL
= r
'https://vimeo\.com/groups/(?P<name>[^/]+)(?:/(?!videos?/\d+)|$)'
949 'url': 'https://vimeo.com/groups/rolexawards',
952 'title': 'Rolex Awards for Enterprise',
954 'playlist_mincount': 73,
957 def _extract_list_title(self
, webpage
):
958 return self
._og
_search
_title
(webpage
)
960 def _real_extract(self
, url
):
961 mobj
= re
.match(self
._VALID
_URL
, url
)
962 name
= mobj
.group('name')
963 return self
._extract
_videos
(name
, 'https://vimeo.com/groups/%s' % name
)
966 class VimeoReviewIE(VimeoBaseInfoExtractor
):
967 IE_NAME
= 'vimeo:review'
968 IE_DESC
= 'Review pages on vimeo'
969 _VALID_URL
= r
'(?P<url>https://vimeo\.com/[^/]+/review/(?P<id>[^/]+)/[0-9a-f]{10})'
971 'url': 'https://vimeo.com/user21297594/review/75524534/3c257a1b5d',
972 'md5': 'c507a72f780cacc12b2248bb4006d253',
976 'title': "DICK HARDWICK 'Comedian'",
977 'uploader': 'Richard Hardwick',
978 'uploader_id': 'user21297594',
981 'note': 'video player needs Referer',
982 'url': 'https://vimeo.com/user22258446/review/91613211/13f927e053',
983 'md5': '6295fdab8f4bf6a002d058b2c6dce276',
987 'title': 're:(?i)^Death by dogma versus assembling agile . Sander Hoogendoorn',
988 'uploader': 'DevWeek Events',
990 'thumbnail': r
're:^https?://.*\.jpg$',
991 'uploader_id': 'user22258446',
994 'note': 'Password protected',
995 'url': 'https://vimeo.com/user37284429/review/138823582/c4d865efde',
999 'title': 'EFFICIENT PICKUP MASTERCLASS MODULE 1',
1001 'uploader_id': 'user37284429',
1004 'videopassword': 'holygrail',
1006 'skip': 'video gone',
1009 def _real_initialize(self
):
1012 def _get_config_url(self
, webpage_url
, video_id
, video_password_verified
=False):
1013 webpage
= self
._download
_webpage
(webpage_url
, video_id
)
1014 config_url
= self
._html
_search
_regex
(
1015 r
'data-config-url=(["\'])(?P
<url
>(?
:(?
!\
1).)+)\
1', webpage,
1016 'config URL
', default=None, group='url
')
1018 data = self._parse_json(self._search_regex(
1019 r'window\s
*=\s
*_extend\
(window
,\s
*({.+?
})\
);', webpage, 'data
',
1020 default=NO_DEFAULT if video_password_verified else '{}'), video_id)
1021 config = data.get('vimeo_esi
', {}).get('config
', {})
1022 config_url = config.get('configUrl
') or try_get(config, lambda x: x['clipData
']['configUrl
'])
1023 if config_url is None:
1024 self._verify_video_password(webpage_url, video_id, webpage)
1025 config_url = self._get_config_url(
1026 webpage_url, video_id, video_password_verified=True)
1029 def _real_extract(self, url):
1030 page_url, video_id = re.match(self._VALID_URL, url).groups()
1031 config_url = self._get_config_url(url, video_id)
1032 config = self._download_json(config_url, video_id)
1033 info_dict = self._parse_config(config, video_id)
1034 source_format = self._extract_original_format(page_url, video_id)
1036 info_dict['formats
'].append(source_format)
1037 self._vimeo_sort_formats(info_dict['formats
'])
1038 info_dict['id'] = video_id
1042 class VimeoWatchLaterIE(VimeoChannelIE):
1043 IE_NAME = 'vimeo
:watchlater
'
1044 IE_DESC = 'Vimeo watch later
list, "vimeowatchlater" keyword (requires authentication
)'
1045 _VALID_URL = r'https
://vimeo\
.com
/(?
:home
/)?watchlater|
:vimeowatchlater
'
1046 _TITLE = 'Watch Later
'
1047 _LOGIN_REQUIRED = True
1049 'url
': 'https
://vimeo
.com
/watchlater
',
1050 'only_matching
': True,
1053 def _real_initialize(self):
1056 def _page_url(self, base_url, pagenum):
1057 url = '%s/page
:%d/' % (base_url, pagenum)
1058 request = sanitized_Request(url)
1059 # Set the header to get a partial html page with the ids,
1060 # the normal page doesn't contain them
.
1061 request
.add_header('X-Requested-With', 'XMLHttpRequest')
1064 def _real_extract(self
, url
):
1065 return self
._extract
_videos
('watchlater', 'https://vimeo.com/watchlater')
1068 class VimeoLikesIE(InfoExtractor
):
1069 _VALID_URL
= r
'https://(?:www\.)?vimeo\.com/(?P<id>[^/]+)/likes/?(?:$|[?#]|sort:)'
1070 IE_NAME
= 'vimeo:likes'
1071 IE_DESC
= 'Vimeo user likes'
1073 'url': 'https://vimeo.com/user755559/likes/',
1074 'playlist_mincount': 293,
1076 'id': 'user755559_likes',
1077 'description': 'See all the videos urza likes',
1078 'title': 'Videos urza likes',
1081 'url': 'https://vimeo.com/stormlapse/likes',
1082 'only_matching': True,
1085 def _real_extract(self
, url
):
1086 user_id
= self
._match
_id
(url
)
1087 webpage
= self
._download
_webpage
(url
, user_id
)
1088 page_count
= self
._int
(
1090 r
'''(?x)<li><a\s+href="[^"]+"\s+data-page="([0-9]+)">
1091 .*?</a></li>\s*<li\s+class="pagination_next">
1092 ''', webpage
, 'page count', default
=1),
1093 'page count', fatal
=True)
1095 title
= self
._html
_search
_regex
(
1096 r
'(?s)<h1>(.+?)</h1>', webpage
, 'title', fatal
=False)
1097 description
= self
._html
_search
_meta
('description', webpage
)
1100 page_url
= 'https://vimeo.com/%s/likes/page:%d/sort:date' % (
1102 webpage
= self
._download
_webpage
(
1104 note
='Downloading page %d/%d' % (idx
+ 1, page_count
))
1105 video_list
= self
._search
_regex
(
1106 r
'(?s)<ol class="js-browse_list[^"]+"[^>]*>(.*?)</ol>',
1107 webpage
, 'video content')
1109 r
'<li[^>]*>\s*<a\s+href="([^"]+)"', video_list
)
1113 'url': compat_urlparse
.urljoin(page_url
, path
),
1116 pl
= InAdvancePagedList(_get_page
, page_count
, PAGE_SIZE
)
1119 '_type': 'playlist',
1120 'id': '%s_likes' % user_id
,
1122 'description': description
,
1127 class VHXEmbedIE(InfoExtractor
):
1128 IE_NAME
= 'vhx:embed'
1129 _VALID_URL
= r
'https?://embed\.vhx\.tv/videos/(?P<id>\d+)'
1131 def _call_api(self
, video_id
, access_token
, path
='', query
=None):
1132 return self
._download
_json
(
1133 'https://api.vhx.tv/videos/' + video_id
+ path
, video_id
, headers
={
1134 'Authorization': 'Bearer ' + access_token
,
1137 def _real_extract(self
, url
):
1138 video_id
= self
._match
_id
(url
)
1139 webpage
= self
._download
_webpage
(url
, video_id
)
1140 credentials
= self
._parse
_json
(self
._search
_regex
(
1141 r
'(?s)credentials\s*:\s*({.+?}),', webpage
,
1142 'config'), video_id
, js_to_json
)
1143 access_token
= credentials
['access_token']
1146 for k
, v
in credentials
.items():
1147 if k
in ('authorization', 'authUserToken', 'ticket') and v
and v
!= 'undefined':
1148 if k
== 'authUserToken':
1149 query
['auth_user_token'] = v
1152 files
= self
._call
_api
(video_id
, access_token
, '/files', query
)
1156 href
= try_get(f
, lambda x
: x
['_links']['source']['href'])
1159 method
= f
.get('method')
1161 formats
.extend(self
._extract
_m
3u8_formats
(
1162 href
, video_id
, 'mp4', 'm3u8_native',
1163 m3u8_id
='hls', fatal
=False))
1164 elif method
== 'dash':
1165 formats
.extend(self
._extract
_mpd
_formats
(
1166 href
, video_id
, mpd_id
='dash', fatal
=False))
1169 'filesize': int_or_none(try_get(f
, lambda x
: x
['size']['bytes'])),
1170 'format_id': 'http',
1173 'vcodec': f
.get('codec'),
1175 quality
= f
.get('quality')
1178 'format_id': 'http-' + quality
,
1179 'height': int_or_none(self
._search
_regex
(r
'(\d+)p', quality
, 'height', default
=None)),
1182 self
._sort
_formats
(formats
)
1184 video_data
= self
._call
_api
(video_id
, access_token
)
1185 title
= video_data
.get('title') or video_data
['name']
1188 for subtitle
in try_get(video_data
, lambda x
: x
['tracks']['subtitles'], list) or []:
1189 lang
= subtitle
.get('srclang') or subtitle
.get('label')
1190 for _link
in subtitle
.get('_links', {}).values():
1191 href
= _link
.get('href')
1194 subtitles
.setdefault(lang
, []).append({
1198 q
= qualities(['small', 'medium', 'large', 'source'])
1200 for thumbnail_id
, thumbnail_url
in video_data
.get('thumbnail', {}).items():
1203 'url': thumbnail_url
,
1204 'preference': q(thumbnail_id
),
1210 'description': video_data
.get('description'),
1211 'duration': int_or_none(try_get(video_data
, lambda x
: x
['duration']['seconds'])),
1213 'subtitles': subtitles
,
1214 'thumbnails': thumbnails
,
1215 'timestamp': unified_timestamp(video_data
.get('created_at')),
1216 'view_count': int_or_none(video_data
.get('plays_count')),