mirror of https://github.com/yt-dlp/yt-dlp.git
[vlive] fix: live video extractor
* use live video info endpoint from v3 api
This commit is contained in:
parent
3417362556
commit
73cc1b9125
|
@ -162,19 +162,16 @@ class VLiveIE(NaverBaseIE):
|
||||||
}
|
}
|
||||||
|
|
||||||
def _live(self, video_id, webpage, params):
|
def _live(self, video_id, webpage, params):
|
||||||
init_page = self._download_init_page(video_id)
|
LIVE_INFO_ENDPOINT = 'https://www.vlive.tv/globalv-web/vam-web/old/v3/live/%s/playInfo' % video_id
|
||||||
|
play_info = self._download_json(LIVE_INFO_ENDPOINT, video_id,
|
||||||
|
headers={"referer": "https://www.vlive.tv"})
|
||||||
|
|
||||||
live_params = self._search_regex(
|
streams = try_get(play_info, lambda x: x["result"]["streamList"]) or []
|
||||||
r'"liveStreamInfo"\s*:\s*(".*"),',
|
|
||||||
init_page, 'live stream info')
|
|
||||||
live_params = self._parse_json(live_params, video_id)
|
|
||||||
live_params = self._parse_json(live_params, video_id)
|
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
for vid in live_params.get('resolutions', []):
|
for stream in streams:
|
||||||
formats.extend(self._extract_m3u8_formats(
|
formats.extend(self._extract_m3u8_formats(
|
||||||
vid['cdnUrl'], video_id, 'mp4',
|
stream['serviceUrl'], video_id, 'mp4',
|
||||||
m3u8_id=vid.get('name'),
|
|
||||||
fatal=False, live=True))
|
fatal=False, live=True))
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue