|
@@ -70,10 +70,10 @@ class ViceBaseIE(AdobePassIE):
|
|
'url': uplynk_preplay_url,
|
|
'url': uplynk_preplay_url,
|
|
'id': video_id,
|
|
'id': video_id,
|
|
'title': title,
|
|
'title': title,
|
|
- 'description': base.get('body'),
|
|
|
|
|
|
+ 'description': base.get('body') or base.get('display_body'),
|
|
'thumbnail': watch_hub_data.get('cover-image') or watch_hub_data.get('thumbnail'),
|
|
'thumbnail': watch_hub_data.get('cover-image') or watch_hub_data.get('thumbnail'),
|
|
- 'duration': parse_duration(video_data.get('video_duration') or watch_hub_data.get('video-duration')),
|
|
|
|
- 'timestamp': int_or_none(video_data.get('created_at')),
|
|
|
|
|
|
+ 'duration': int_or_none(video_data.get('video_duration')) or parse_duration(watch_hub_data.get('video-duration')),
|
|
|
|
+ 'timestamp': int_or_none(video_data.get('created_at'), 1000),
|
|
'age_limit': parse_age_limit(video_data.get('video_rating')),
|
|
'age_limit': parse_age_limit(video_data.get('video_rating')),
|
|
'series': video_data.get('show_title') or watch_hub_data.get('show-title'),
|
|
'series': video_data.get('show_title') or watch_hub_data.get('show-title'),
|
|
'episode_number': int_or_none(episode.get('episode_number') or watch_hub_data.get('episode')),
|
|
'episode_number': int_or_none(episode.get('episode_number') or watch_hub_data.get('episode')),
|