|
|
@ -42,24 +42,18 @@ class DropboxIE(InfoExtractor):
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
fn = urllib.parse.unquote(url_basename(url))
|
|
|
|
fn = urllib.parse.unquote(url_basename(url))
|
|
|
|
title = os.path.splitext(fn)[0]
|
|
|
|
title = os.path.splitext(fn)[0]
|
|
|
|
password = self.get_param('videopassword')
|
|
|
|
|
|
|
|
thumbnail = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for encoded in reversed(re.findall(r'registerStreamedPrefetch\s*\(\s*"[\w/+=]+"\s*,\s*"([\w/+=]+)"', webpage)):
|
|
|
|
|
|
|
|
part = base64.b64decode(encoded).decode('utf-8', 'ignore')
|
|
|
|
|
|
|
|
if 'sm/password' in part:
|
|
|
|
|
|
|
|
webpage = self._download_webpage(
|
|
|
|
|
|
|
|
'https://www.dropbox.com/sm/password?' + part.split('?')[1], video_id)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
password = self.get_param('videopassword')
|
|
|
|
if (self._og_search_title(webpage) == 'Dropbox - Password Required'
|
|
|
|
if (self._og_search_title(webpage) == 'Dropbox - Password Required'
|
|
|
|
or 'Enter the password for this link' in webpage):
|
|
|
|
or 'Enter the password for this link' in webpage):
|
|
|
|
|
|
|
|
|
|
|
|
if password:
|
|
|
|
if password:
|
|
|
|
content_id = self._search_regex(r'content_id=(.*?)["\']', webpage, 'content_id')
|
|
|
|
content_id = self._search_regex(r'content_id=(.*?)["\']', webpage, 'content_id')
|
|
|
|
payload = f'is_xhr=true&t={self._get_cookies("https://www.dropbox.com").get("t").value}&content_id={content_id}&password={password}&url={url.replace("https://www.dropbox.com", "")}'
|
|
|
|
payload = f'is_xhr=true&t={self._get_cookies("https://www.dropbox.com").get("t").value}&content_id={content_id}&password={password}&url={url}'
|
|
|
|
response = self._download_json(
|
|
|
|
response = self._download_json(
|
|
|
|
'https://www.dropbox.com/sm/auth', video_id, 'POSTing video password', data=payload.encode(),
|
|
|
|
'https://www.dropbox.com/sm/auth', video_id, 'POSTing video password', data=payload.encode(),
|
|
|
|
headers={'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'})
|
|
|
|
headers={'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'})
|
|
|
|
|
|
|
|
|
|
|
|
if response.get('status') != 'authed':
|
|
|
|
if response.get('status') != 'authed':
|
|
|
|
raise ExtractorError('Authentication failed!', expected=True)
|
|
|
|
raise ExtractorError('Authentication failed!', expected=True)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
@ -79,8 +73,6 @@ class DropboxIE(InfoExtractor):
|
|
|
|
if not transcode_url:
|
|
|
|
if not transcode_url:
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
formats, subtitles = self._extract_m3u8_formats_and_subtitles(transcode_url, video_id, 'mp4')
|
|
|
|
formats, subtitles = self._extract_m3u8_formats_and_subtitles(transcode_url, video_id, 'mp4')
|
|
|
|
thumbnail = self._search_regex(
|
|
|
|
|
|
|
|
r'(https://www\.dropbox\.com/temp_thumb_from_token/c/(.*?)\?preserve_transparency=False&rlkey=(.*?)&secure_hash=&size=(.*?)&size_mode=4)', decoded, 'thumbnail url', default=None)
|
|
|
|
|
|
|
|
break
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
|
|
# downloads enabled we can get the original file
|
|
|
|
# downloads enabled we can get the original file
|
|
|
@ -94,7 +86,6 @@ class DropboxIE(InfoExtractor):
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'id': video_id,
|
|
|
|
'thumbnail': thumbnail,
|
|
|
|
|
|
|
|
'title': title,
|
|
|
|
'title': title,
|
|
|
|
'formats': formats,
|
|
|
|
'formats': formats,
|
|
|
|
'subtitles': subtitles,
|
|
|
|
'subtitles': subtitles,
|
|
|
|