mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 23:25:06 +00:00
[ign] Return proper playlist object
This commit is contained in:
parent
12548cd933
commit
6043f1df4e
1 changed files with 6 additions and 1 deletions
|
@ -89,7 +89,12 @@ def _real_extract(self, url):
|
||||||
'<param name="flashvars"[^>]*value="[^"]*?url=(https?://www\.ign\.com/videos/.*?)["&]',
|
'<param name="flashvars"[^>]*value="[^"]*?url=(https?://www\.ign\.com/videos/.*?)["&]',
|
||||||
webpage)
|
webpage)
|
||||||
if multiple_urls:
|
if multiple_urls:
|
||||||
return [self.url_result(u, ie='IGN') for u in multiple_urls]
|
entries = [self.url_result(u, ie='IGN') for u in multiple_urls]
|
||||||
|
return {
|
||||||
|
'_type': 'playlist',
|
||||||
|
'id': name_or_id,
|
||||||
|
'entries': entries,
|
||||||
|
}
|
||||||
|
|
||||||
video_id = self._find_video_id(webpage)
|
video_id = self._find_video_id(webpage)
|
||||||
result = self._get_video_info(video_id)
|
result = self._get_video_info(video_id)
|
||||||
|
|
Loading…
Reference in a new issue