]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/vimeo.py
Update to ytdl v2021-04-01
[yt-dlp.git] / yt_dlp / extractor / vimeo.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import base64
5 import functools
6 import json
7 import re
8 import itertools
9
10 from .common import InfoExtractor
11 from ..compat import (
12 compat_kwargs,
13 compat_HTTPError,
14 compat_str,
15 compat_urlparse,
16 )
17 from ..utils import (
18 clean_html,
19 determine_ext,
20 dict_get,
21 ExtractorError,
22 js_to_json,
23 int_or_none,
24 merge_dicts,
25 OnDemandPagedList,
26 parse_filesize,
27 parse_iso8601,
28 RegexNotFoundError,
29 sanitized_Request,
30 smuggle_url,
31 std_headers,
32 str_or_none,
33 try_get,
34 unified_timestamp,
35 unsmuggle_url,
36 urlencode_postdata,
37 urljoin,
38 unescapeHTML,
39 )
40
41
42 class VimeoBaseInfoExtractor(InfoExtractor):
43 _NETRC_MACHINE = 'vimeo'
44 _LOGIN_REQUIRED = False
45 _LOGIN_URL = 'https://vimeo.com/log_in'
46
47 def _login(self):
48 username, password = self._get_login_info()
49 if username is None:
50 if self._LOGIN_REQUIRED:
51 raise ExtractorError('No login info available, needed for using %s.' % self.IE_NAME, expected=True)
52 return
53 webpage = self._download_webpage(
54 self._LOGIN_URL, None, 'Downloading login page')
55 token, vuid = self._extract_xsrft_and_vuid(webpage)
56 data = {
57 'action': 'login',
58 'email': username,
59 'password': password,
60 'service': 'vimeo',
61 'token': token,
62 }
63 self._set_vimeo_cookie('vuid', vuid)
64 try:
65 self._download_webpage(
66 self._LOGIN_URL, None, 'Logging in',
67 data=urlencode_postdata(data), headers={
68 'Content-Type': 'application/x-www-form-urlencoded',
69 'Referer': self._LOGIN_URL,
70 })
71 except ExtractorError as e:
72 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 418:
73 raise ExtractorError(
74 'Unable to log in: bad username or password',
75 expected=True)
76 raise ExtractorError('Unable to log in')
77
78 def _get_video_password(self):
79 password = self._downloader.params.get('videopassword')
80 if password is None:
81 raise ExtractorError(
82 'This video is protected by a password, use the --video-password option',
83 expected=True)
84 return password
85
86 def _verify_video_password(self, url, video_id, password, token, vuid):
87 if url.startswith('http://'):
88 # vimeo only supports https now, but the user can give an http url
89 url = url.replace('http://', 'https://')
90 self._set_vimeo_cookie('vuid', vuid)
91 return self._download_webpage(
92 url + '/password', video_id, 'Verifying the password',
93 'Wrong password', data=urlencode_postdata({
94 'password': password,
95 'token': token,
96 }), headers={
97 'Content-Type': 'application/x-www-form-urlencoded',
98 'Referer': url,
99 })
100
101 def _extract_xsrft_and_vuid(self, webpage):
102 xsrft = self._search_regex(
103 r'(?:(?P<q1>["\'])xsrft(?P=q1)\s*:|xsrft\s*[=:])\s*(?P<q>["\'])(?P<xsrft>.+?)(?P=q)',
104 webpage, 'login token', group='xsrft')
105 vuid = self._search_regex(
106 r'["\']vuid["\']\s*:\s*(["\'])(?P<vuid>.+?)\1',
107 webpage, 'vuid', group='vuid')
108 return xsrft, vuid
109
110 def _extract_vimeo_config(self, webpage, video_id, *args, **kwargs):
111 vimeo_config = self._search_regex(
112 r'vimeo\.config\s*=\s*(?:({.+?})|_extend\([^,]+,\s+({.+?})\));',
113 webpage, 'vimeo config', *args, **compat_kwargs(kwargs))
114 if vimeo_config:
115 return self._parse_json(vimeo_config, video_id)
116
117 def _set_vimeo_cookie(self, name, value):
118 self._set_cookie('vimeo.com', name, value)
119
120 def _vimeo_sort_formats(self, formats):
121 # Bitrates are completely broken. Single m3u8 may contain entries in kbps and bps
122 # at the same time without actual units specified. This lead to wrong sorting.
123 # But since yt-dlp prefers 'res,fps' anyway, 'field_preference' is not needed
124 self._sort_formats(formats)
125
126 def _parse_config(self, config, video_id):
127 video_data = config['video']
128 video_title = video_data['title']
129 live_event = video_data.get('live_event') or {}
130 is_live = live_event.get('status') == 'started'
131
132 formats = []
133 config_files = video_data.get('files') or config['request'].get('files', {})
134 for f in config_files.get('progressive', []):
135 video_url = f.get('url')
136 if not video_url:
137 continue
138 formats.append({
139 'url': video_url,
140 'format_id': 'http-%s' % f.get('quality'),
141 'width': int_or_none(f.get('width')),
142 'height': int_or_none(f.get('height')),
143 'fps': int_or_none(f.get('fps')),
144 'tbr': int_or_none(f.get('bitrate')),
145 })
146
147 # TODO: fix handling of 308 status code returned for live archive manifest requests
148 sep_pattern = r'/sep/video/'
149 for files_type in ('hls', 'dash'):
150 for cdn_name, cdn_data in config_files.get(files_type, {}).get('cdns', {}).items():
151 manifest_url = cdn_data.get('url')
152 if not manifest_url:
153 continue
154 format_id = '%s-%s' % (files_type, cdn_name)
155 sep_manifest_urls = []
156 if re.search(sep_pattern, manifest_url):
157 for suffix, repl in (('', 'video'), ('_sep', 'sep/video')):
158 sep_manifest_urls.append((format_id + suffix, re.sub(
159 sep_pattern, '/%s/' % repl, manifest_url)))
160 else:
161 sep_manifest_urls = [(format_id, manifest_url)]
162 for f_id, m_url in sep_manifest_urls:
163 if files_type == 'hls':
164 formats.extend(self._extract_m3u8_formats(
165 m_url, video_id, 'mp4',
166 'm3u8' if is_live else 'm3u8_native', m3u8_id=f_id,
167 note='Downloading %s m3u8 information' % cdn_name,
168 fatal=False))
169 elif files_type == 'dash':
170 if 'json=1' in m_url:
171 real_m_url = (self._download_json(m_url, video_id, fatal=False) or {}).get('url')
172 if real_m_url:
173 m_url = real_m_url
174 mpd_formats = self._extract_mpd_formats(
175 m_url.replace('/master.json', '/master.mpd'), video_id, f_id,
176 'Downloading %s MPD information' % cdn_name,
177 fatal=False)
178 formats.extend(mpd_formats)
179
180 live_archive = live_event.get('archive') or {}
181 live_archive_source_url = live_archive.get('source_url')
182 if live_archive_source_url and live_archive.get('status') == 'done':
183 formats.append({
184 'format_id': 'live-archive-source',
185 'url': live_archive_source_url,
186 'quality': 10,
187 })
188
189 subtitles = {}
190 text_tracks = config['request'].get('text_tracks')
191 if text_tracks:
192 for tt in text_tracks:
193 subtitles[tt['lang']] = [{
194 'ext': 'vtt',
195 'url': urljoin('https://vimeo.com', tt['url']),
196 }]
197
198 thumbnails = []
199 if not is_live:
200 for key, thumb in video_data.get('thumbs', {}).items():
201 thumbnails.append({
202 'id': key,
203 'width': int_or_none(key),
204 'url': thumb,
205 })
206 thumbnail = video_data.get('thumbnail')
207 if thumbnail:
208 thumbnails.append({
209 'url': thumbnail,
210 })
211
212 owner = video_data.get('owner') or {}
213 video_uploader_url = owner.get('url')
214
215 return {
216 'id': str_or_none(video_data.get('id')) or video_id,
217 'title': self._live_title(video_title) if is_live else video_title,
218 'uploader': owner.get('name'),
219 'uploader_id': video_uploader_url.split('/')[-1] if video_uploader_url else None,
220 'uploader_url': video_uploader_url,
221 'thumbnails': thumbnails,
222 'duration': int_or_none(video_data.get('duration')),
223 'formats': formats,
224 'subtitles': subtitles,
225 'is_live': is_live,
226 }
227
228 def _extract_original_format(self, url, video_id, unlisted_hash=None):
229 query = {'action': 'load_download_config'}
230 if unlisted_hash:
231 query['unlisted_hash'] = unlisted_hash
232 download_data = self._download_json(
233 url, video_id, fatal=False, query=query,
234 headers={'X-Requested-With': 'XMLHttpRequest'})
235 if download_data:
236 source_file = download_data.get('source_file')
237 if isinstance(source_file, dict):
238 download_url = source_file.get('download_url')
239 if download_url and not source_file.get('is_cold') and not source_file.get('is_defrosting'):
240 source_name = source_file.get('public_name', 'Original')
241 if self._is_valid_url(download_url, video_id, '%s video' % source_name):
242 ext = (try_get(
243 source_file, lambda x: x['extension'],
244 compat_str) or determine_ext(
245 download_url, None) or 'mp4').lower()
246 return {
247 'url': download_url,
248 'ext': ext,
249 'width': int_or_none(source_file.get('width')),
250 'height': int_or_none(source_file.get('height')),
251 'filesize': parse_filesize(source_file.get('size')),
252 'format_id': source_name,
253 'quality': 1,
254 }
255
256
257 class VimeoIE(VimeoBaseInfoExtractor):
258 """Information extractor for vimeo.com."""
259
260 # _VALID_URL matches Vimeo URLs
261 _VALID_URL = r'''(?x)
262 https?://
263 (?:
264 (?:
265 www|
266 player
267 )
268 \.
269 )?
270 vimeo(?:pro)?\.com/
271 (?!(?:channels|album|showcase)/[^/?#]+/?(?:$|[?#])|[^/]+/review/|ondemand/)
272 (?:.*?/)?
273 (?:
274 (?:
275 play_redirect_hls|
276 moogaloop\.swf)\?clip_id=
277 )?
278 (?:videos?/)?
279 (?P<id>[0-9]+)
280 (?:/(?P<unlisted_hash>[\da-f]{10}))?
281 /?(?:[?&].*)?(?:[#].*)?$
282 '''
283 IE_NAME = 'vimeo'
284 _TESTS = [
285 {
286 'url': 'http://vimeo.com/56015672#at=0',
287 'md5': '8879b6cc097e987f02484baf890129e5',
288 'info_dict': {
289 'id': '56015672',
290 'ext': 'mp4',
291 'title': "youtube-dl test video - \u2605 \" ' \u5e78 / \\ \u00e4 \u21ad \U0001d550",
292 'description': 'md5:2d3305bad981a06ff79f027f19865021',
293 'timestamp': 1355990239,
294 'upload_date': '20121220',
295 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/user7108434',
296 'uploader_id': 'user7108434',
297 'uploader': 'Filippo Valsorda',
298 'duration': 10,
299 'license': 'by-sa',
300 },
301 'params': {
302 'format': 'best[protocol=https]',
303 },
304 },
305 {
306 'url': 'http://vimeopro.com/openstreetmapus/state-of-the-map-us-2013/video/68093876',
307 'md5': '3b5ca6aa22b60dfeeadf50b72e44ed82',
308 'note': 'Vimeo Pro video (#1197)',
309 'info_dict': {
310 'id': '68093876',
311 'ext': 'mp4',
312 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/openstreetmapus',
313 'uploader_id': 'openstreetmapus',
314 'uploader': 'OpenStreetMap US',
315 'title': 'Andy Allan - Putting the Carto into OpenStreetMap Cartography',
316 'description': 'md5:2c362968038d4499f4d79f88458590c1',
317 'duration': 1595,
318 'upload_date': '20130610',
319 'timestamp': 1370893156,
320 },
321 'params': {
322 'format': 'best[protocol=https]',
323 },
324 },
325 {
326 'url': 'http://player.vimeo.com/video/54469442',
327 'md5': '619b811a4417aa4abe78dc653becf511',
328 'note': 'Videos that embed the url in the player page',
329 'info_dict': {
330 'id': '54469442',
331 'ext': 'mp4',
332 'title': 'Kathy Sierra: Building the minimum Badass User, Business of Software 2012',
333 'uploader': 'Business of Software',
334 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/businessofsoftware',
335 'uploader_id': 'businessofsoftware',
336 'duration': 3610,
337 'description': None,
338 },
339 'params': {
340 'format': 'best[protocol=https]',
341 },
342 'expected_warnings': ['Unable to download JSON metadata'],
343 },
344 {
345 'url': 'http://vimeo.com/68375962',
346 'md5': 'aaf896bdb7ddd6476df50007a0ac0ae7',
347 'note': 'Video protected with password',
348 'info_dict': {
349 'id': '68375962',
350 'ext': 'mp4',
351 'title': 'youtube-dl password protected test video',
352 'timestamp': 1371200155,
353 'upload_date': '20130614',
354 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/user18948128',
355 'uploader_id': 'user18948128',
356 'uploader': 'Jaime Marquínez Ferrándiz',
357 'duration': 10,
358 'description': 'md5:dca3ea23adb29ee387127bc4ddfce63f',
359 },
360 'params': {
361 'format': 'best[protocol=https]',
362 'videopassword': 'youtube-dl',
363 },
364 },
365 {
366 'url': 'http://vimeo.com/channels/keypeele/75629013',
367 'md5': '2f86a05afe9d7abc0b9126d229bbe15d',
368 'info_dict': {
369 'id': '75629013',
370 'ext': 'mp4',
371 'title': 'Key & Peele: Terrorist Interrogation',
372 'description': 'md5:8678b246399b070816b12313e8b4eb5c',
373 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/atencio',
374 'uploader_id': 'atencio',
375 'uploader': 'Peter Atencio',
376 'channel_id': 'keypeele',
377 'channel_url': r're:https?://(?:www\.)?vimeo\.com/channels/keypeele',
378 'timestamp': 1380339469,
379 'upload_date': '20130928',
380 'duration': 187,
381 },
382 'expected_warnings': ['Unable to download JSON metadata'],
383 },
384 {
385 'url': 'http://vimeo.com/76979871',
386 'note': 'Video with subtitles',
387 'info_dict': {
388 'id': '76979871',
389 'ext': 'mp4',
390 'title': 'The New Vimeo Player (You Know, For Videos)',
391 'description': 'md5:2ec900bf97c3f389378a96aee11260ea',
392 'timestamp': 1381846109,
393 'upload_date': '20131015',
394 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/staff',
395 'uploader_id': 'staff',
396 'uploader': 'Vimeo Staff',
397 'duration': 62,
398 }
399 },
400 {
401 # from https://www.ouya.tv/game/Pier-Solar-and-the-Great-Architects/
402 'url': 'https://player.vimeo.com/video/98044508',
403 'note': 'The js code contains assignments to the same variable as the config',
404 'info_dict': {
405 'id': '98044508',
406 'ext': 'mp4',
407 'title': 'Pier Solar OUYA Official Trailer',
408 'uploader': 'Tulio Gonçalves',
409 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/user28849593',
410 'uploader_id': 'user28849593',
411 },
412 },
413 {
414 # contains original format
415 'url': 'https://vimeo.com/33951933',
416 'md5': '53c688fa95a55bf4b7293d37a89c5c53',
417 'info_dict': {
418 'id': '33951933',
419 'ext': 'mp4',
420 'title': 'FOX CLASSICS - Forever Classic ID - A Full Minute',
421 'uploader': 'The DMCI',
422 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/dmci',
423 'uploader_id': 'dmci',
424 'timestamp': 1324343742,
425 'upload_date': '20111220',
426 'description': 'md5:ae23671e82d05415868f7ad1aec21147',
427 },
428 },
429 {
430 # only available via https://vimeo.com/channels/tributes/6213729 and
431 # not via https://vimeo.com/6213729
432 'url': 'https://vimeo.com/channels/tributes/6213729',
433 'info_dict': {
434 'id': '6213729',
435 'ext': 'mp4',
436 'title': 'Vimeo Tribute: The Shining',
437 'uploader': 'Casey Donahue',
438 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/caseydonahue',
439 'uploader_id': 'caseydonahue',
440 'channel_url': r're:https?://(?:www\.)?vimeo\.com/channels/tributes',
441 'channel_id': 'tributes',
442 'timestamp': 1250886430,
443 'upload_date': '20090821',
444 'description': 'md5:bdbf314014e58713e6e5b66eb252f4a6',
445 },
446 'params': {
447 'skip_download': True,
448 },
449 'expected_warnings': ['Unable to download JSON metadata'],
450 },
451 {
452 # redirects to ondemand extractor and should be passed through it
453 # for successful extraction
454 'url': 'https://vimeo.com/73445910',
455 'info_dict': {
456 'id': '73445910',
457 'ext': 'mp4',
458 'title': 'The Reluctant Revolutionary',
459 'uploader': '10Ft Films',
460 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/tenfootfilms',
461 'uploader_id': 'tenfootfilms',
462 'description': 'md5:0fa704e05b04f91f40b7f3ca2e801384',
463 'upload_date': '20130830',
464 'timestamp': 1377853339,
465 },
466 'params': {
467 'skip_download': True,
468 },
469 'expected_warnings': ['Unable to download JSON metadata'],
470 'skip': 'this page is no longer available.',
471 },
472 {
473 'url': 'http://player.vimeo.com/video/68375962',
474 'md5': 'aaf896bdb7ddd6476df50007a0ac0ae7',
475 'info_dict': {
476 'id': '68375962',
477 'ext': 'mp4',
478 'title': 'youtube-dl password protected test video',
479 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/user18948128',
480 'uploader_id': 'user18948128',
481 'uploader': 'Jaime Marquínez Ferrándiz',
482 'duration': 10,
483 },
484 'params': {
485 'format': 'best[protocol=https]',
486 'videopassword': 'youtube-dl',
487 },
488 },
489 {
490 'url': 'http://vimeo.com/moogaloop.swf?clip_id=2539741',
491 'only_matching': True,
492 },
493 {
494 'url': 'https://vimeo.com/109815029',
495 'note': 'Video not completely processed, "failed" seed status',
496 'only_matching': True,
497 },
498 {
499 'url': 'https://vimeo.com/groups/travelhd/videos/22439234',
500 'only_matching': True,
501 },
502 {
503 'url': 'https://vimeo.com/album/2632481/video/79010983',
504 'only_matching': True,
505 },
506 {
507 'url': 'https://vimeo.com/showcase/3253534/video/119195465',
508 'note': 'A video in a password protected album (showcase)',
509 'info_dict': {
510 'id': '119195465',
511 'ext': 'mp4',
512 'title': 'youtube-dl test video \'ä"BaW_jenozKc',
513 'uploader': 'Philipp Hagemeister',
514 'uploader_id': 'user20132939',
515 'description': 'md5:fa7b6c6d8db0bdc353893df2f111855b',
516 'upload_date': '20150209',
517 'timestamp': 1423518307,
518 },
519 'params': {
520 'format': 'best[protocol=https]',
521 'videopassword': 'youtube-dl',
522 },
523 },
524 {
525 # source file returns 403: Forbidden
526 'url': 'https://vimeo.com/7809605',
527 'only_matching': True,
528 },
529 {
530 'url': 'https://vimeo.com/160743502/abd0e13fb4',
531 'only_matching': True,
532 },
533 {
534 # requires passing unlisted_hash(a52724358e) to load_download_config request
535 'url': 'https://vimeo.com/392479337/a52724358e',
536 'only_matching': True,
537 }
538 # https://gettingthingsdone.com/workflowmap/
539 # vimeo embed with check-password page protected by Referer header
540 ]
541
542 @staticmethod
543 def _smuggle_referrer(url, referrer_url):
544 return smuggle_url(url, {'http_headers': {'Referer': referrer_url}})
545
546 @staticmethod
547 def _extract_urls(url, webpage):
548 urls = []
549 # Look for embedded (iframe) Vimeo player
550 for mobj in re.finditer(
551 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//player\.vimeo\.com/video/\d+.*?)\1',
552 webpage):
553 urls.append(VimeoIE._smuggle_referrer(unescapeHTML(mobj.group('url')), url))
554 PLAIN_EMBED_RE = (
555 # Look for embedded (swf embed) Vimeo player
556 r'<embed[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)\1',
557 # Look more for non-standard embedded Vimeo player
558 r'<video[^>]+src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?vimeo\.com/[0-9]+)\1',
559 )
560 for embed_re in PLAIN_EMBED_RE:
561 for mobj in re.finditer(embed_re, webpage):
562 urls.append(mobj.group('url'))
563 return urls
564
565 @staticmethod
566 def _extract_url(url, webpage):
567 urls = VimeoIE._extract_urls(url, webpage)
568 return urls[0] if urls else None
569
570 def _verify_player_video_password(self, url, video_id, headers):
571 password = self._get_video_password()
572 data = urlencode_postdata({
573 'password': base64.b64encode(password.encode()),
574 })
575 headers = merge_dicts(headers, {
576 'Content-Type': 'application/x-www-form-urlencoded',
577 })
578 checked = self._download_json(
579 url + '/check-password', video_id,
580 'Verifying the password', data=data, headers=headers)
581 if checked is False:
582 raise ExtractorError('Wrong video password', expected=True)
583 return checked
584
585 def _real_initialize(self):
586 self._login()
587
588 def _try_album_password(self, url):
589 album_id = self._search_regex(
590 r'vimeo\.com/(?:album|showcase)/([^/]+)', url, 'album id', default=None)
591 if not album_id:
592 return
593 viewer = self._download_json(
594 'https://vimeo.com/_rv/viewer', album_id, fatal=False)
595 if not viewer:
596 webpage = self._download_webpage(url, album_id)
597 viewer = self._parse_json(self._search_regex(
598 r'bootstrap_data\s*=\s*({.+?})</script>',
599 webpage, 'bootstrap data'), album_id)['viewer']
600 jwt = viewer['jwt']
601 album = self._download_json(
602 'https://api.vimeo.com/albums/' + album_id,
603 album_id, headers={'Authorization': 'jwt ' + jwt},
604 query={'fields': 'description,name,privacy'})
605 if try_get(album, lambda x: x['privacy']['view']) == 'password':
606 password = self._downloader.params.get('videopassword')
607 if not password:
608 raise ExtractorError(
609 'This album is protected by a password, use the --video-password option',
610 expected=True)
611 self._set_vimeo_cookie('vuid', viewer['vuid'])
612 try:
613 self._download_json(
614 'https://vimeo.com/showcase/%s/auth' % album_id,
615 album_id, 'Verifying the password', data=urlencode_postdata({
616 'password': password,
617 'token': viewer['xsrft'],
618 }), headers={
619 'X-Requested-With': 'XMLHttpRequest',
620 })
621 except ExtractorError as e:
622 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 401:
623 raise ExtractorError('Wrong password', expected=True)
624 raise
625
626 def _real_extract(self, url):
627 url, data = unsmuggle_url(url, {})
628 headers = std_headers.copy()
629 if 'http_headers' in data:
630 headers.update(data['http_headers'])
631 if 'Referer' not in headers:
632 headers['Referer'] = url
633
634 # Extract ID from URL
635 video_id, unlisted_hash = re.match(self._VALID_URL, url).groups()
636 if unlisted_hash:
637 token = self._download_json(
638 'https://vimeo.com/_rv/jwt', video_id, headers={
639 'X-Requested-With': 'XMLHttpRequest'
640 })['token']
641 video = self._download_json(
642 'https://api.vimeo.com/videos/%s:%s' % (video_id, unlisted_hash),
643 video_id, headers={
644 'Authorization': 'jwt ' + token,
645 }, query={
646 'fields': 'config_url,created_time,description,license,metadata.connections.comments.total,metadata.connections.likes.total,release_time,stats.plays',
647 })
648 info = self._parse_config(self._download_json(
649 video['config_url'], video_id), video_id)
650 self._vimeo_sort_formats(info['formats'])
651 get_timestamp = lambda x: parse_iso8601(video.get(x + '_time'))
652 info.update({
653 'description': video.get('description'),
654 'license': video.get('license'),
655 'release_timestamp': get_timestamp('release'),
656 'timestamp': get_timestamp('created'),
657 'view_count': int_or_none(try_get(video, lambda x: x['stats']['plays'])),
658 })
659 connections = try_get(
660 video, lambda x: x['metadata']['connections'], dict) or {}
661 for k in ('comment', 'like'):
662 info[k + '_count'] = int_or_none(try_get(connections, lambda x: x[k + 's']['total']))
663 return info
664
665 orig_url = url
666 is_pro = 'vimeopro.com/' in url
667 is_player = '://player.vimeo.com/video/' in url
668 if is_pro:
669 # some videos require portfolio_id to be present in player url
670 # https://github.com/ytdl-org/youtube-dl/issues/20070
671 url = self._extract_url(url, self._download_webpage(url, video_id))
672 if not url:
673 url = 'https://vimeo.com/' + video_id
674 elif is_player:
675 url = 'https://player.vimeo.com/video/' + video_id
676 elif any(p in url for p in ('play_redirect_hls', 'moogaloop.swf')):
677 url = 'https://vimeo.com/' + video_id
678
679 self._try_album_password(url)
680 try:
681 # Retrieve video webpage to extract further information
682 webpage, urlh = self._download_webpage_handle(
683 url, video_id, headers=headers)
684 redirect_url = urlh.geturl()
685 except ExtractorError as ee:
686 if isinstance(ee.cause, compat_HTTPError) and ee.cause.code == 403:
687 errmsg = ee.cause.read()
688 if b'Because of its privacy settings, this video cannot be played here' in errmsg:
689 raise ExtractorError(
690 'Cannot download embed-only video without embedding '
691 'URL. Please call yt-dlp with the URL of the page '
692 'that embeds this video.',
693 expected=True)
694 raise
695
696 # Now we begin extracting as much information as we can from what we
697 # retrieved. First we extract the information common to all extractors,
698 # and latter we extract those that are Vimeo specific.
699 self.report_extraction(video_id)
700
701 vimeo_config = self._extract_vimeo_config(webpage, video_id, default=None)
702 if vimeo_config:
703 seed_status = vimeo_config.get('seed_status', {})
704 if seed_status.get('state') == 'failed':
705 raise ExtractorError(
706 '%s said: %s' % (self.IE_NAME, seed_status['title']),
707 expected=True)
708
709 cc_license = None
710 timestamp = None
711 video_description = None
712
713 # Extract the config JSON
714 try:
715 try:
716 config_url = self._html_search_regex(
717 r' data-config-url="(.+?)"', webpage,
718 'config URL', default=None)
719 if not config_url:
720 # Sometimes new react-based page is served instead of old one that require
721 # different config URL extraction approach (see
722 # https://github.com/ytdl-org/youtube-dl/pull/7209)
723 page_config = self._parse_json(self._search_regex(
724 r'vimeo\.(?:clip|vod_title)_page_config\s*=\s*({.+?});',
725 webpage, 'page config'), video_id)
726 config_url = page_config['player']['config_url']
727 cc_license = page_config.get('cc_license')
728 timestamp = try_get(
729 page_config, lambda x: x['clip']['uploaded_on'],
730 compat_str)
731 video_description = clean_html(dict_get(
732 page_config, ('description', 'description_html_escaped')))
733 config = self._download_json(config_url, video_id)
734 except RegexNotFoundError:
735 # For pro videos or player.vimeo.com urls
736 # We try to find out to which variable is assigned the config dic
737 m_variable_name = re.search(r'(\w)\.video\.id', webpage)
738 if m_variable_name is not None:
739 config_re = [r'%s=({[^}].+?});' % re.escape(m_variable_name.group(1))]
740 else:
741 config_re = [r' = {config:({.+?}),assets:', r'(?:[abc])=({.+?});']
742 config_re.append(r'\bvar\s+r\s*=\s*({.+?})\s*;')
743 config_re.append(r'\bconfig\s*=\s*({.+?})\s*;')
744 config = self._search_regex(config_re, webpage, 'info section',
745 flags=re.DOTALL)
746 config = json.loads(config)
747 except Exception as e:
748 if re.search('The creator of this video has not given you permission to embed it on this domain.', webpage):
749 raise ExtractorError('The author has restricted the access to this video, try with the "--referer" option')
750
751 if re.search(r'<form[^>]+?id="pw_form"', webpage) is not None:
752 if '_video_password_verified' in data:
753 raise ExtractorError('video password verification failed!')
754 video_password = self._get_video_password()
755 token, vuid = self._extract_xsrft_and_vuid(webpage)
756 self._verify_video_password(
757 redirect_url, video_id, video_password, token, vuid)
758 return self._real_extract(
759 smuggle_url(redirect_url, {'_video_password_verified': 'verified'}))
760 else:
761 raise ExtractorError('Unable to extract info section',
762 cause=e)
763 else:
764 if config.get('view') == 4:
765 config = self._verify_player_video_password(redirect_url, video_id, headers)
766
767 video = config.get('video') or {}
768 vod = video.get('vod') or {}
769
770 def is_rented():
771 if '>You rented this title.<' in webpage:
772 return True
773 if config.get('user', {}).get('purchased'):
774 return True
775 for purchase_option in vod.get('purchase_options', []):
776 if purchase_option.get('purchased'):
777 return True
778 label = purchase_option.get('label_string')
779 if label and (label.startswith('You rented this') or label.endswith(' remaining')):
780 return True
781 return False
782
783 if is_rented() and vod.get('is_trailer'):
784 feature_id = vod.get('feature_id')
785 if feature_id and not data.get('force_feature_id', False):
786 return self.url_result(smuggle_url(
787 'https://player.vimeo.com/player/%s' % feature_id,
788 {'force_feature_id': True}), 'Vimeo')
789
790 # Extract video description
791 if not video_description:
792 video_description = self._html_search_regex(
793 r'(?s)<div\s+class="[^"]*description[^"]*"[^>]*>(.*?)</div>',
794 webpage, 'description', default=None)
795 if not video_description:
796 video_description = self._html_search_meta(
797 'description', webpage, default=None)
798 if not video_description and is_pro:
799 orig_webpage = self._download_webpage(
800 orig_url, video_id,
801 note='Downloading webpage for description',
802 fatal=False)
803 if orig_webpage:
804 video_description = self._html_search_meta(
805 'description', orig_webpage, default=None)
806 if not video_description and not is_player:
807 self._downloader.report_warning('Cannot find video description')
808
809 # Extract upload date
810 if not timestamp:
811 timestamp = self._search_regex(
812 r'<time[^>]+datetime="([^"]+)"', webpage,
813 'timestamp', default=None)
814
815 try:
816 view_count = int(self._search_regex(r'UserPlays:(\d+)', webpage, 'view count'))
817 like_count = int(self._search_regex(r'UserLikes:(\d+)', webpage, 'like count'))
818 comment_count = int(self._search_regex(r'UserComments:(\d+)', webpage, 'comment count'))
819 except RegexNotFoundError:
820 # This info is only available in vimeo.com/{id} urls
821 view_count = None
822 like_count = None
823 comment_count = None
824
825 formats = []
826
827 source_format = self._extract_original_format(
828 'https://vimeo.com/' + video_id, video_id, video.get('unlisted_hash'))
829 if source_format:
830 formats.append(source_format)
831
832 info_dict_config = self._parse_config(config, video_id)
833 formats.extend(info_dict_config['formats'])
834 self._vimeo_sort_formats(formats)
835
836 json_ld = self._search_json_ld(webpage, video_id, default={})
837
838 if not cc_license:
839 cc_license = self._search_regex(
840 r'<link[^>]+rel=["\']license["\'][^>]+href=(["\'])(?P<license>(?:(?!\1).)+)\1',
841 webpage, 'license', default=None, group='license')
842
843 channel_id = self._search_regex(
844 r'vimeo\.com/channels/([^/]+)', url, 'channel id', default=None)
845 channel_url = 'https://vimeo.com/channels/%s' % channel_id if channel_id else None
846
847 info_dict = {
848 'formats': formats,
849 'timestamp': unified_timestamp(timestamp),
850 'description': video_description,
851 'webpage_url': url,
852 'view_count': view_count,
853 'like_count': like_count,
854 'comment_count': comment_count,
855 'license': cc_license,
856 'channel_id': channel_id,
857 'channel_url': channel_url,
858 }
859
860 info_dict = merge_dicts(info_dict, info_dict_config, json_ld)
861
862 return info_dict
863
864
865 class VimeoOndemandIE(VimeoIE):
866 IE_NAME = 'vimeo:ondemand'
867 _VALID_URL = r'https?://(?:www\.)?vimeo\.com/ondemand/([^/]+/)?(?P<id>[^/?#&]+)'
868 _TESTS = [{
869 # ondemand video not available via https://vimeo.com/id
870 'url': 'https://vimeo.com/ondemand/20704',
871 'md5': 'c424deda8c7f73c1dfb3edd7630e2f35',
872 'info_dict': {
873 'id': '105442900',
874 'ext': 'mp4',
875 'title': 'המעבדה - במאי יותם פלדמן',
876 'uploader': 'גם סרטים',
877 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/gumfilms',
878 'uploader_id': 'gumfilms',
879 'description': 'md5:4c027c965e439de4baab621e48b60791',
880 'upload_date': '20140906',
881 'timestamp': 1410032453,
882 },
883 'params': {
884 'format': 'best[protocol=https]',
885 },
886 'expected_warnings': ['Unable to download JSON metadata'],
887 }, {
888 # requires Referer to be passed along with og:video:url
889 'url': 'https://vimeo.com/ondemand/36938/126682985',
890 'info_dict': {
891 'id': '126584684',
892 'ext': 'mp4',
893 'title': 'Rävlock, rätt läte på rätt plats',
894 'uploader': 'Lindroth & Norin',
895 'uploader_url': r're:https?://(?:www\.)?vimeo\.com/lindrothnorin',
896 'uploader_id': 'lindrothnorin',
897 'description': 'md5:c3c46a90529612c8279fb6af803fc0df',
898 'upload_date': '20150502',
899 'timestamp': 1430586422,
900 },
901 'params': {
902 'skip_download': True,
903 },
904 'expected_warnings': ['Unable to download JSON metadata'],
905 }, {
906 'url': 'https://vimeo.com/ondemand/nazmaalik',
907 'only_matching': True,
908 }, {
909 'url': 'https://vimeo.com/ondemand/141692381',
910 'only_matching': True,
911 }, {
912 'url': 'https://vimeo.com/ondemand/thelastcolony/150274832',
913 'only_matching': True,
914 }]
915
916
917 class VimeoChannelIE(VimeoBaseInfoExtractor):
918 IE_NAME = 'vimeo:channel'
919 _VALID_URL = r'https://vimeo\.com/channels/(?P<id>[^/?#]+)/?(?:$|[?#])'
920 _MORE_PAGES_INDICATOR = r'<a.+?rel="next"'
921 _TITLE = None
922 _TITLE_RE = r'<link rel="alternate"[^>]+?title="(.*?)"'
923 _TESTS = [{
924 'url': 'https://vimeo.com/channels/tributes',
925 'info_dict': {
926 'id': 'tributes',
927 'title': 'Vimeo Tributes',
928 },
929 'playlist_mincount': 25,
930 }]
931 _BASE_URL_TEMPL = 'https://vimeo.com/channels/%s'
932
933 def _page_url(self, base_url, pagenum):
934 return '%s/videos/page:%d/' % (base_url, pagenum)
935
936 def _extract_list_title(self, webpage):
937 return self._TITLE or self._html_search_regex(
938 self._TITLE_RE, webpage, 'list title', fatal=False)
939
940 def _title_and_entries(self, list_id, base_url):
941 for pagenum in itertools.count(1):
942 page_url = self._page_url(base_url, pagenum)
943 webpage = self._download_webpage(
944 page_url, list_id,
945 'Downloading page %s' % pagenum)
946
947 if pagenum == 1:
948 yield self._extract_list_title(webpage)
949
950 # Try extracting href first since not all videos are available via
951 # short https://vimeo.com/id URL (e.g. https://vimeo.com/channels/tributes/6213729)
952 clips = re.findall(
953 r'id="clip_(\d+)"[^>]*>\s*<a[^>]+href="(/(?:[^/]+/)*\1)(?:[^>]+\btitle="([^"]+)")?', webpage)
954 if clips:
955 for video_id, video_url, video_title in clips:
956 yield self.url_result(
957 compat_urlparse.urljoin(base_url, video_url),
958 VimeoIE.ie_key(), video_id=video_id, video_title=video_title)
959 # More relaxed fallback
960 else:
961 for video_id in re.findall(r'id=["\']clip_(\d+)', webpage):
962 yield self.url_result(
963 'https://vimeo.com/%s' % video_id,
964 VimeoIE.ie_key(), video_id=video_id)
965
966 if re.search(self._MORE_PAGES_INDICATOR, webpage, re.DOTALL) is None:
967 break
968
969 def _extract_videos(self, list_id, base_url):
970 title_and_entries = self._title_and_entries(list_id, base_url)
971 list_title = next(title_and_entries)
972 return self.playlist_result(title_and_entries, list_id, list_title)
973
974 def _real_extract(self, url):
975 channel_id = self._match_id(url)
976 return self._extract_videos(channel_id, self._BASE_URL_TEMPL % channel_id)
977
978
979 class VimeoUserIE(VimeoChannelIE):
980 IE_NAME = 'vimeo:user'
981 _VALID_URL = r'https://vimeo\.com/(?!(?:[0-9]+|watchlater)(?:$|[?#/]))(?P<id>[^/]+)(?:/videos|[#?]|$)'
982 _TITLE_RE = r'<a[^>]+?class="user">([^<>]+?)</a>'
983 _TESTS = [{
984 'url': 'https://vimeo.com/nkistudio/videos',
985 'info_dict': {
986 'title': 'Nki',
987 'id': 'nkistudio',
988 },
989 'playlist_mincount': 66,
990 }]
991 _BASE_URL_TEMPL = 'https://vimeo.com/%s'
992
993
994 class VimeoAlbumIE(VimeoBaseInfoExtractor):
995 IE_NAME = 'vimeo:album'
996 _VALID_URL = r'https://vimeo\.com/(?:album|showcase)/(?P<id>\d+)(?:$|[?#]|/(?!video))'
997 _TITLE_RE = r'<header id="page_header">\n\s*<h1>(.*?)</h1>'
998 _TESTS = [{
999 'url': 'https://vimeo.com/album/2632481',
1000 'info_dict': {
1001 'id': '2632481',
1002 'title': 'Staff Favorites: November 2013',
1003 },
1004 'playlist_mincount': 13,
1005 }, {
1006 'note': 'Password-protected album',
1007 'url': 'https://vimeo.com/album/3253534',
1008 'info_dict': {
1009 'title': 'test',
1010 'id': '3253534',
1011 },
1012 'playlist_count': 1,
1013 'params': {
1014 'videopassword': 'youtube-dl',
1015 }
1016 }]
1017 _PAGE_SIZE = 100
1018
1019 def _fetch_page(self, album_id, authorization, hashed_pass, page):
1020 api_page = page + 1
1021 query = {
1022 'fields': 'link,uri',
1023 'page': api_page,
1024 'per_page': self._PAGE_SIZE,
1025 }
1026 if hashed_pass:
1027 query['_hashed_pass'] = hashed_pass
1028 try:
1029 videos = self._download_json(
1030 'https://api.vimeo.com/albums/%s/videos' % album_id,
1031 album_id, 'Downloading page %d' % api_page, query=query, headers={
1032 'Authorization': 'jwt ' + authorization,
1033 })['data']
1034 except ExtractorError as e:
1035 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 400:
1036 return
1037 for video in videos:
1038 link = video.get('link')
1039 if not link:
1040 continue
1041 uri = video.get('uri')
1042 video_id = self._search_regex(r'/videos/(\d+)', uri, 'video_id', default=None) if uri else None
1043 yield self.url_result(link, VimeoIE.ie_key(), video_id)
1044
1045 def _real_extract(self, url):
1046 album_id = self._match_id(url)
1047 viewer = self._download_json(
1048 'https://vimeo.com/_rv/viewer', album_id, fatal=False)
1049 if not viewer:
1050 webpage = self._download_webpage(url, album_id)
1051 viewer = self._parse_json(self._search_regex(
1052 r'bootstrap_data\s*=\s*({.+?})</script>',
1053 webpage, 'bootstrap data'), album_id)['viewer']
1054 jwt = viewer['jwt']
1055 album = self._download_json(
1056 'https://api.vimeo.com/albums/' + album_id,
1057 album_id, headers={'Authorization': 'jwt ' + jwt},
1058 query={'fields': 'description,name,privacy'})
1059 hashed_pass = None
1060 if try_get(album, lambda x: x['privacy']['view']) == 'password':
1061 password = self._downloader.params.get('videopassword')
1062 if not password:
1063 raise ExtractorError(
1064 'This album is protected by a password, use the --video-password option',
1065 expected=True)
1066 self._set_vimeo_cookie('vuid', viewer['vuid'])
1067 try:
1068 hashed_pass = self._download_json(
1069 'https://vimeo.com/showcase/%s/auth' % album_id,
1070 album_id, 'Verifying the password', data=urlencode_postdata({
1071 'password': password,
1072 'token': viewer['xsrft'],
1073 }), headers={
1074 'X-Requested-With': 'XMLHttpRequest',
1075 })['hashed_pass']
1076 except ExtractorError as e:
1077 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 401:
1078 raise ExtractorError('Wrong password', expected=True)
1079 raise
1080 entries = OnDemandPagedList(functools.partial(
1081 self._fetch_page, album_id, jwt, hashed_pass), self._PAGE_SIZE)
1082 return self.playlist_result(
1083 entries, album_id, album.get('name'), album.get('description'))
1084
1085
1086 class VimeoGroupsIE(VimeoChannelIE):
1087 IE_NAME = 'vimeo:group'
1088 _VALID_URL = r'https://vimeo\.com/groups/(?P<id>[^/]+)(?:/(?!videos?/\d+)|$)'
1089 _TESTS = [{
1090 'url': 'https://vimeo.com/groups/kattykay',
1091 'info_dict': {
1092 'id': 'kattykay',
1093 'title': 'Katty Kay',
1094 },
1095 'playlist_mincount': 27,
1096 }]
1097 _BASE_URL_TEMPL = 'https://vimeo.com/groups/%s'
1098
1099
1100 class VimeoReviewIE(VimeoBaseInfoExtractor):
1101 IE_NAME = 'vimeo:review'
1102 IE_DESC = 'Review pages on vimeo'
1103 _VALID_URL = r'(?P<url>https://vimeo\.com/[^/]+/review/(?P<id>[^/]+)/[0-9a-f]{10})'
1104 _TESTS = [{
1105 'url': 'https://vimeo.com/user21297594/review/75524534/3c257a1b5d',
1106 'md5': 'c507a72f780cacc12b2248bb4006d253',
1107 'info_dict': {
1108 'id': '75524534',
1109 'ext': 'mp4',
1110 'title': "DICK HARDWICK 'Comedian'",
1111 'uploader': 'Richard Hardwick',
1112 'uploader_id': 'user21297594',
1113 'description': "Comedian Dick Hardwick's five minute demo filmed in front of a live theater audience.\nEdit by Doug Mattocks",
1114 },
1115 'expected_warnings': ['Unable to download JSON metadata'],
1116 }, {
1117 'note': 'video player needs Referer',
1118 'url': 'https://vimeo.com/user22258446/review/91613211/13f927e053',
1119 'md5': '6295fdab8f4bf6a002d058b2c6dce276',
1120 'info_dict': {
1121 'id': '91613211',
1122 'ext': 'mp4',
1123 'title': 're:(?i)^Death by dogma versus assembling agile . Sander Hoogendoorn',
1124 'uploader': 'DevWeek Events',
1125 'duration': 2773,
1126 'thumbnail': r're:^https?://.*\.jpg$',
1127 'uploader_id': 'user22258446',
1128 },
1129 'skip': 'video gone',
1130 }, {
1131 'note': 'Password protected',
1132 'url': 'https://vimeo.com/user37284429/review/138823582/c4d865efde',
1133 'info_dict': {
1134 'id': '138823582',
1135 'ext': 'mp4',
1136 'title': 'EFFICIENT PICKUP MASTERCLASS MODULE 1',
1137 'uploader': 'TMB',
1138 'uploader_id': 'user37284429',
1139 },
1140 'params': {
1141 'videopassword': 'holygrail',
1142 },
1143 'skip': 'video gone',
1144 }]
1145
1146 def _real_initialize(self):
1147 self._login()
1148
1149 def _real_extract(self, url):
1150 page_url, video_id = re.match(self._VALID_URL, url).groups()
1151 data = self._download_json(
1152 page_url.replace('/review/', '/review/data/'), video_id)
1153 if data.get('isLocked') is True:
1154 video_password = self._get_video_password()
1155 viewer = self._download_json(
1156 'https://vimeo.com/_rv/viewer', video_id)
1157 webpage = self._verify_video_password(
1158 'https://vimeo.com/' + video_id, video_id,
1159 video_password, viewer['xsrft'], viewer['vuid'])
1160 clip_page_config = self._parse_json(self._search_regex(
1161 r'window\.vimeo\.clip_page_config\s*=\s*({.+?});',
1162 webpage, 'clip page config'), video_id)
1163 config_url = clip_page_config['player']['config_url']
1164 clip_data = clip_page_config.get('clip') or {}
1165 else:
1166 clip_data = data['clipData']
1167 config_url = clip_data['configUrl']
1168 config = self._download_json(config_url, video_id)
1169 info_dict = self._parse_config(config, video_id)
1170 source_format = self._extract_original_format(
1171 page_url + '/action', video_id)
1172 if source_format:
1173 info_dict['formats'].append(source_format)
1174 self._vimeo_sort_formats(info_dict['formats'])
1175 info_dict['description'] = clean_html(clip_data.get('description'))
1176 return info_dict
1177
1178
1179 class VimeoWatchLaterIE(VimeoChannelIE):
1180 IE_NAME = 'vimeo:watchlater'
1181 IE_DESC = 'Vimeo watch later list, "vimeowatchlater" keyword (requires authentication)'
1182 _VALID_URL = r'https://vimeo\.com/(?:home/)?watchlater|:vimeowatchlater'
1183 _TITLE = 'Watch Later'
1184 _LOGIN_REQUIRED = True
1185 _TESTS = [{
1186 'url': 'https://vimeo.com/watchlater',
1187 'only_matching': True,
1188 }]
1189
1190 def _real_initialize(self):
1191 self._login()
1192
1193 def _page_url(self, base_url, pagenum):
1194 url = '%s/page:%d/' % (base_url, pagenum)
1195 request = sanitized_Request(url)
1196 # Set the header to get a partial html page with the ids,
1197 # the normal page doesn't contain them.
1198 request.add_header('X-Requested-With', 'XMLHttpRequest')
1199 return request
1200
1201 def _real_extract(self, url):
1202 return self._extract_videos('watchlater', 'https://vimeo.com/watchlater')
1203
1204
1205 class VimeoLikesIE(VimeoChannelIE):
1206 _VALID_URL = r'https://(?:www\.)?vimeo\.com/(?P<id>[^/]+)/likes/?(?:$|[?#]|sort:)'
1207 IE_NAME = 'vimeo:likes'
1208 IE_DESC = 'Vimeo user likes'
1209 _TESTS = [{
1210 'url': 'https://vimeo.com/user755559/likes/',
1211 'playlist_mincount': 293,
1212 'info_dict': {
1213 'id': 'user755559',
1214 'title': 'urza’s Likes',
1215 },
1216 }, {
1217 'url': 'https://vimeo.com/stormlapse/likes',
1218 'only_matching': True,
1219 }]
1220
1221 def _page_url(self, base_url, pagenum):
1222 return '%s/page:%d/' % (base_url, pagenum)
1223
1224 def _real_extract(self, url):
1225 user_id = self._match_id(url)
1226 return self._extract_videos(user_id, 'https://vimeo.com/%s/likes' % user_id)
1227
1228
1229 class VHXEmbedIE(VimeoBaseInfoExtractor):
1230 IE_NAME = 'vhx:embed'
1231 _VALID_URL = r'https?://embed\.vhx\.tv/videos/(?P<id>\d+)'
1232
1233 @staticmethod
1234 def _extract_url(webpage):
1235 mobj = re.search(
1236 r'<iframe[^>]+src="(https?://embed\.vhx\.tv/videos/\d+[^"]*)"', webpage)
1237 return unescapeHTML(mobj.group(1)) if mobj else None
1238
1239 def _real_extract(self, url):
1240 video_id = self._match_id(url)
1241 webpage = self._download_webpage(url, video_id)
1242 config_url = self._parse_json(self._search_regex(
1243 r'window\.OTTData\s*=\s*({.+})', webpage,
1244 'ott data'), video_id, js_to_json)['config_url']
1245 config = self._download_json(config_url, video_id)
1246 info = self._parse_config(config, video_id)
1247 info['id'] = video_id
1248 self._vimeo_sort_formats(info['formats'])
1249 return info