aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/vlive.py
diff options
context:
space:
mode:
authorCorey Nicholson <dev@debianvm1>2016-12-05 21:16:12 +0000
committerSergey M․ <dstftw@gmail.com>2016-12-14 21:05:32 +0700
commit577748075bf5bb2f3fcf4f6b8dbb54ae4e6af585 (patch)
tree1653658a7914f72450d572d1ae94c41f3e0b5490 /youtube_dl/extractor/vlive.py
parent67dcbc0add399d5dc0f8ffe82723b03451782c97 (diff)
downloadyoutube-dl-577748075bf5bb2f3fcf4f6b8dbb54ae4e6af585.tar.xz
[vlive] Update extraction
Diffstat (limited to 'youtube_dl/extractor/vlive.py')
-rw-r--r--youtube_dl/extractor/vlive.py30
1 files changed, 21 insertions, 9 deletions
diff --git a/youtube_dl/extractor/vlive.py b/youtube_dl/extractor/vlive.py
index acf9fda48..1a9f10eb4 100644
--- a/youtube_dl/extractor/vlive.py
+++ b/youtube_dl/extractor/vlive.py
@@ -48,17 +48,16 @@ class VLiveIE(InfoExtractor):
webpage = self._download_webpage(
'http://www.vlive.tv/video/%s' % video_id, video_id)
- video_params = self._search_regex(
- r'\bvlive\.video\.init\(([^)]+)\)',
- webpage, 'video params')
- status, _, _, live_params, long_video_id, key = re.split(
- r'"\s*,\s*"', video_params)[2:8]
+ video_params = self._parse_json(self._search_regex(
+ r'\bvlive\.video\.init\(([^)]+)\);',
+ webpage, 'video params'), video_id,
+ transform_source=lambda s: '[' + s + ']')
+
+ status, long_video_id, key = video_params[2], video_params[5], video_params[6]
status = remove_start(status, 'PRODUCT_')
if status == 'LIVE_ON_AIR' or status == 'BIG_EVENT_ON_AIR':
- live_params = self._parse_json('"%s"' % live_params, video_id)
- live_params = self._parse_json(live_params, video_id)
- return self._live(video_id, webpage, live_params)
+ return self._live(video_id, webpage)
elif status == 'VOD_ON_AIR' or status == 'BIG_EVENT_INTRO':
if long_video_id and key:
return self._replay(video_id, webpage, long_video_id, key)
@@ -89,7 +88,20 @@ class VLiveIE(InfoExtractor):
'thumbnail': thumbnail,
}
- def _live(self, video_id, webpage, live_params):
+ def _live(self, video_id, webpage):
+ init_page = self._download_webpage(
+ 'http://www.vlive.tv/video/init/view',
+ video_id, data="videoSeq=%s" % video_id, headers={
+ 'Referer': 'http://www.vlive.tv/video/%s' % video_id,
+ 'Content-Type': 'application/x-www-form-urlencoded'
+ })
+
+ live_params = self._search_regex(
+ r'"liveStreamInfo"\s*:\s*(".*"),',
+ init_page, 'video params')
+ live_params = self._parse_json(live_params, video_id)
+ live_params = self._parse_json(live_params, video_id)
+
formats = []
for vid in live_params.get('resolutions', []):
formats.extend(self._extract_m3u8_formats(