mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 01:02:13 +01:00
[bilibili] Switch to v2 playurl API
This commit is contained in:
parent
3526c3043b
commit
d123960857
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ def _real_extract(self, url):
|
|||
sign = hashlib.md5((payload + self._BILIBILI_KEY).encode('utf-8')).hexdigest()
|
||||
|
||||
video_info = self._download_json(
|
||||
'http://interface.bilibili.com/playurl?%s&sign=%s' % (payload, sign),
|
||||
'http://interface.bilibili.com/v2/playurl?%s&sign=%s' % (payload, sign),
|
||||
video_id, note='Downloading video info page',
|
||||
headers=headers, fatal=num == len(RENDITIONS))
|
||||
|
||||
|
|
Loading…
Reference in a new issue