|
|
|
@ -247,9 +247,13 @@ class VVVVIDShowIE(VVVVIDIE):
|
|
|
|
|
show_info = self._download_info(
|
|
|
|
|
show_id, 'info/', show_title, fatal=False)
|
|
|
|
|
|
|
|
|
|
if not show_title:
|
|
|
|
|
base_url += "/title"
|
|
|
|
|
|
|
|
|
|
entries = []
|
|
|
|
|
for season in (seasons or []):
|
|
|
|
|
episodes = season.get('episodes') or []
|
|
|
|
|
playlist_title = season.get('name') or show_info.get('title')
|
|
|
|
|
for episode in episodes:
|
|
|
|
|
if episode.get('playable') is False:
|
|
|
|
|
continue
|
|
|
|
@ -259,12 +263,13 @@ class VVVVIDShowIE(VVVVIDIE):
|
|
|
|
|
continue
|
|
|
|
|
info = self._extract_common_video_info(episode)
|
|
|
|
|
info.update({
|
|
|
|
|
'_type': 'url',
|
|
|
|
|
'_type': 'url_transparent',
|
|
|
|
|
'ie_key': VVVVIDIE.ie_key(),
|
|
|
|
|
'url': '/'.join([base_url, season_id, video_id]),
|
|
|
|
|
'title': episode.get('title'),
|
|
|
|
|
'description': episode.get('description'),
|
|
|
|
|
'season_id': season_id,
|
|
|
|
|
'playlist_title': playlist_title,
|
|
|
|
|
})
|
|
|
|
|
entries.append(info)
|
|
|
|
|
|
|
|
|
|