mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 17:18:01 +01:00
parent
cccfab6412
commit
d42b2d2985
1 changed files with 2 additions and 6 deletions
|
@ -71,12 +71,8 @@ def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
video_id = mobj.group('id')
|
video_id = mobj.group('id')
|
||||||
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
json_url = 'http://vube.com/t-api/v1/video/%s?country=US&limit=120®ion=US' % video_id
|
||||||
data_json = self._search_regex(
|
data = self._download_json(json_url, video_id)
|
||||||
r'(?s)window\["(?:tapiVideoData|vubeOriginalVideoData)"\]\s*=\s*(\{.*?\n});\n',
|
|
||||||
webpage, 'video data'
|
|
||||||
)
|
|
||||||
data = json.loads(data_json)
|
|
||||||
video = (
|
video = (
|
||||||
data.get('video') or
|
data.get('video') or
|
||||||
data)
|
data)
|
||||||
|
|
Loading…
Reference in a new issue