mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Merge pull request #224 from kyuyeunk/vlive
[Vlive] Fix playlist handling when downloading a channel
This commit is contained in:
commit
8e423ae86a
1 changed files with 26 additions and 5 deletions
|
@ -315,9 +315,30 @@ def _real_extract(self, url):
|
||||||
|
|
||||||
for video in videos:
|
for video in videos:
|
||||||
video_id = video.get('videoSeq')
|
video_id = video.get('videoSeq')
|
||||||
if not video_id:
|
video_type = video.get('videoType')
|
||||||
|
|
||||||
|
if not video_id or not video_type:
|
||||||
continue
|
continue
|
||||||
video_id = compat_str(video_id)
|
video_id = compat_str(video_id)
|
||||||
|
|
||||||
|
if video_type in ('PLAYLIST'):
|
||||||
|
playlist_videos = try_get(
|
||||||
|
video,
|
||||||
|
lambda x: x['videoPlaylist']['videoList'], list)
|
||||||
|
if not playlist_videos:
|
||||||
|
continue
|
||||||
|
|
||||||
|
for playlist_video in playlist_videos:
|
||||||
|
playlist_video_id = playlist_video.get('videoSeq')
|
||||||
|
if not playlist_video_id:
|
||||||
|
continue
|
||||||
|
playlist_video_id = compat_str(playlist_video_id)
|
||||||
|
|
||||||
|
entries.append(
|
||||||
|
self.url_result(
|
||||||
|
'http://www.vlive.tv/video/%s' % playlist_video_id,
|
||||||
|
ie=VLiveIE.ie_key(), video_id=playlist_video_id))
|
||||||
|
else:
|
||||||
entries.append(
|
entries.append(
|
||||||
self.url_result(
|
self.url_result(
|
||||||
'http://www.vlive.tv/video/%s' % video_id,
|
'http://www.vlive.tv/video/%s' % video_id,
|
||||||
|
|
Loading…
Reference in a new issue