|
|
|
@ -97,34 +97,20 @@ class DPlayIE(InfoExtractor):
|
|
|
|
|
'only_matching': True,
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
|
display_id = mobj.group('id')
|
|
|
|
|
domain = mobj.group('domain')
|
|
|
|
|
|
|
|
|
|
self._initialize_geo_bypass({
|
|
|
|
|
'countries': [mobj.group('country').upper()],
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
webpage = self._download_webpage(url, display_id)
|
|
|
|
|
|
|
|
|
|
video_id = self._search_regex(
|
|
|
|
|
r'data-video-id=["\'](\d+)', webpage, 'video id', default=None)
|
|
|
|
|
|
|
|
|
|
if not video_id:
|
|
|
|
|
host = mobj.group('host')
|
|
|
|
|
disco_base = 'https://disco-api.%s' % host
|
|
|
|
|
self._download_json(
|
|
|
|
|
def _get_disco_api_info(self, url, display_id, disco_host, realm):
|
|
|
|
|
disco_base = 'https://' + disco_host
|
|
|
|
|
token = self._download_json(
|
|
|
|
|
'%s/token' % disco_base, display_id, 'Downloading token',
|
|
|
|
|
query={
|
|
|
|
|
'realm': host.replace('.', ''),
|
|
|
|
|
})
|
|
|
|
|
video = self._download_json(
|
|
|
|
|
'%s/content/videos/%s' % (disco_base, display_id), display_id,
|
|
|
|
|
'realm': realm,
|
|
|
|
|
})['data']['attributes']['token']
|
|
|
|
|
headers = {
|
|
|
|
|
'Referer': url,
|
|
|
|
|
'x-disco-client': 'WEB:UNKNOWN:dplay-client:0.0.1',
|
|
|
|
|
}, query={
|
|
|
|
|
'Authorization': 'Bearer ' + token,
|
|
|
|
|
}
|
|
|
|
|
video = self._download_json(
|
|
|
|
|
'%s/content/videos/%s' % (disco_base, display_id), display_id,
|
|
|
|
|
headers=headers, query={
|
|
|
|
|
'include': 'show'
|
|
|
|
|
})
|
|
|
|
|
video_id = video['data']['id']
|
|
|
|
@ -133,7 +119,7 @@ class DPlayIE(InfoExtractor):
|
|
|
|
|
formats = []
|
|
|
|
|
for format_id, format_dict in self._download_json(
|
|
|
|
|
'%s/playback/videoPlaybackInfo/%s' % (disco_base, video_id),
|
|
|
|
|
display_id)['data']['attributes']['streaming'].items():
|
|
|
|
|
display_id, headers=headers)['data']['attributes']['streaming'].items():
|
|
|
|
|
if not isinstance(format_dict, dict):
|
|
|
|
|
continue
|
|
|
|
|
format_url = format_dict.get('url')
|
|
|
|
@ -180,6 +166,25 @@ class DPlayIE(InfoExtractor):
|
|
|
|
|
'formats': formats,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
|
display_id = mobj.group('id')
|
|
|
|
|
domain = mobj.group('domain')
|
|
|
|
|
|
|
|
|
|
self._initialize_geo_bypass({
|
|
|
|
|
'countries': [mobj.group('country').upper()],
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
webpage = self._download_webpage(url, display_id)
|
|
|
|
|
|
|
|
|
|
video_id = self._search_regex(
|
|
|
|
|
r'data-video-id=["\'](\d+)', webpage, 'video id', default=None)
|
|
|
|
|
|
|
|
|
|
if not video_id:
|
|
|
|
|
host = mobj.group('host')
|
|
|
|
|
return self._get_disco_api_info(
|
|
|
|
|
url, display_id, 'disco-api.' + host, host.replace('.', ''))
|
|
|
|
|
|
|
|
|
|
info = self._download_json(
|
|
|
|
|
'http://%s/api/v2/ajax/videos?video_id=%s' % (domain, video_id),
|
|
|
|
|
video_id)['data'][0]
|
|
|
|
|