2020-04-12 21:27:58 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2021-03-24 22:32:37 +00:00
|
|
|
import re
|
|
|
|
|
2020-04-12 21:27:58 +00:00
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
2020-04-20 14:20:54 +00:00
|
|
|
ExtractorError,
|
2020-04-12 21:27:58 +00:00
|
|
|
int_or_none,
|
2021-03-24 22:32:37 +00:00
|
|
|
js_to_json,
|
2020-04-20 14:20:54 +00:00
|
|
|
parse_filesize,
|
2021-03-24 22:32:37 +00:00
|
|
|
urlencode_postdata,
|
2020-04-12 21:27:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2020-11-04 20:13:51 +00:00
|
|
|
class ZoomIE(InfoExtractor):
|
|
|
|
IE_NAME = 'zoom'
|
2021-03-24 22:32:37 +00:00
|
|
|
_VALID_URL = r'(?P<base_url>https?://(?:[^.]+\.)?zoom.us/)rec(?:ording)?/(?:play|share)/(?P<id>[A-Za-z0-9_.-]+)'
|
2020-04-12 22:18:40 +00:00
|
|
|
_TEST = {
|
2021-03-24 22:32:37 +00:00
|
|
|
'url': 'https://economist.zoom.us/rec/play/dUk_CNBETmZ5VA2BwEl-jjakPpJ3M1pcfVYAPRsoIbEByGsLjUZtaa4yCATQuOL3der8BlTwxQePl_j0.EImBkXzTIaPvdZO5',
|
|
|
|
'md5': 'ab445e8c911fddc4f9adc842c2c5d434',
|
2020-04-12 21:27:58 +00:00
|
|
|
'info_dict': {
|
2021-03-24 22:32:37 +00:00
|
|
|
'id': 'dUk_CNBETmZ5VA2BwEl-jjakPpJ3M1pcfVYAPRsoIbEByGsLjUZtaa4yCATQuOL3der8BlTwxQePl_j0.EImBkXzTIaPvdZO5',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'China\'s "two sessions" and the new five-year plan',
|
2020-04-12 21:27:58 +00:00
|
|
|
}
|
2020-04-12 22:18:40 +00:00
|
|
|
}
|
2020-04-12 21:27:58 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2021-03-24 22:32:37 +00:00
|
|
|
base_url, play_id = re.match(self._VALID_URL, url).groups()
|
|
|
|
webpage = self._download_webpage(url, play_id)
|
2020-04-20 14:20:54 +00:00
|
|
|
|
2021-03-24 22:32:37 +00:00
|
|
|
try:
|
|
|
|
form = self._form_hidden_inputs('password_form', webpage)
|
|
|
|
except ExtractorError:
|
|
|
|
form = None
|
|
|
|
if form:
|
|
|
|
password = self._downloader.params.get('videopassword')
|
|
|
|
if not password:
|
|
|
|
raise ExtractorError(
|
|
|
|
'This video is protected by a passcode, use the --video-password option', expected=True)
|
|
|
|
is_meeting = form.get('useWhichPasswd') == 'meeting'
|
|
|
|
validation = self._download_json(
|
|
|
|
base_url + 'rec/validate%s_passwd' % ('_meet' if is_meeting else ''),
|
|
|
|
play_id, 'Validating passcode', 'Wrong passcode', data=urlencode_postdata({
|
|
|
|
'id': form[('meet' if is_meeting else 'file') + 'Id'],
|
|
|
|
'passwd': password,
|
|
|
|
'action': form.get('action'),
|
|
|
|
}))
|
|
|
|
if not validation.get('status'):
|
|
|
|
raise ExtractorError(validation['errorMessage'], expected=True)
|
|
|
|
webpage = self._download_webpage(url, play_id)
|
2020-04-12 21:27:58 +00:00
|
|
|
|
2021-03-24 22:32:37 +00:00
|
|
|
data = self._parse_json(self._search_regex(
|
|
|
|
r'(?s)window\.__data__\s*=\s*({.+?});',
|
|
|
|
webpage, 'data'), play_id, js_to_json)
|
2020-04-12 21:27:58 +00:00
|
|
|
|
|
|
|
return {
|
2021-03-24 22:32:37 +00:00
|
|
|
'id': play_id,
|
|
|
|
'title': data['topic'],
|
|
|
|
'url': data['viewMp4Url'],
|
|
|
|
'width': int_or_none(data.get('viewResolvtionsWidth')),
|
|
|
|
'height': int_or_none(data.get('viewResolvtionsHeight')),
|
|
|
|
'http_headers': {
|
|
|
|
'Referer': base_url,
|
|
|
|
},
|
|
|
|
'filesize_approx': parse_filesize(data.get('fileSize')),
|
2020-04-12 22:18:40 +00:00
|
|
|
}
|