mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00: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)
|
||||
video_id = mobj.group('id')
|
||||
|
||||
webpage = self._download_webpage(url, video_id)
|
||||
data_json = self._search_regex(
|
||||
r'(?s)window\["(?:tapiVideoData|vubeOriginalVideoData)"\]\s*=\s*(\{.*?\n});\n',
|
||||
webpage, 'video data'
|
||||
)
|
||||
data = json.loads(data_json)
|
||||
json_url = 'http://vube.com/t-api/v1/video/%s?country=US&limit=120®ion=US' % video_id
|
||||
data = self._download_json(json_url, video_id)
|
||||
video = (
|
||||
data.get('video') or
|
||||
data)
|
||||
|
|
Loading…
Reference in a new issue