|
|
@ -1436,7 +1436,8 @@ class InfoExtractor(object):
|
|
|
|
'url': url_or_none(e.get('contentUrl')),
|
|
|
|
'url': url_or_none(e.get('contentUrl')),
|
|
|
|
'title': unescapeHTML(e.get('name')),
|
|
|
|
'title': unescapeHTML(e.get('name')),
|
|
|
|
'description': unescapeHTML(e.get('description')),
|
|
|
|
'description': unescapeHTML(e.get('description')),
|
|
|
|
'thumbnail': url_or_none(e.get('thumbnailUrl') or e.get('thumbnailURL')),
|
|
|
|
'thumbnails': [{'url': url_or_none(url)}
|
|
|
|
|
|
|
|
for url in variadic(traverse_obj(e, 'thumbnailUrl', 'thumbnailURL'))],
|
|
|
|
'duration': parse_duration(e.get('duration')),
|
|
|
|
'duration': parse_duration(e.get('duration')),
|
|
|
|
'timestamp': unified_timestamp(e.get('uploadDate')),
|
|
|
|
'timestamp': unified_timestamp(e.get('uploadDate')),
|
|
|
|
# author can be an instance of 'Organization' or 'Person' types.
|
|
|
|
# author can be an instance of 'Organization' or 'Person' types.
|
|
|
|