mirror of https://github.com/yt-dlp/yt-dlp.git
parent
767f999b53
commit
7592749cbe
|
@ -208,6 +208,32 @@ class TestInfoExtractor(unittest.TestCase):
|
||||||
},
|
},
|
||||||
{'expected_type': 'NewsArticle'},
|
{'expected_type': 'NewsArticle'},
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
# test multiple thumbnails in a list
|
||||||
|
r'''
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{"@context":"https://schema.org",
|
||||||
|
"@type":"VideoObject",
|
||||||
|
"thumbnailUrl":["https://www.rainews.it/cropgd/640x360/dl/img/2021/12/30/1640886376927_GettyImages.jpg"]}
|
||||||
|
</script>''',
|
||||||
|
{
|
||||||
|
'thumbnails': [{'url': 'https://www.rainews.it/cropgd/640x360/dl/img/2021/12/30/1640886376927_GettyImages.jpg'}],
|
||||||
|
},
|
||||||
|
{},
|
||||||
|
),
|
||||||
|
(
|
||||||
|
# test single thumbnail
|
||||||
|
r'''
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{"@context":"https://schema.org",
|
||||||
|
"@type":"VideoObject",
|
||||||
|
"thumbnailUrl":"https://www.rainews.it/cropgd/640x360/dl/img/2021/12/30/1640886376927_GettyImages.jpg"}
|
||||||
|
</script>''',
|
||||||
|
{
|
||||||
|
'thumbnails': [{'url': 'https://www.rainews.it/cropgd/640x360/dl/img/2021/12/30/1640886376927_GettyImages.jpg'}],
|
||||||
|
},
|
||||||
|
{},
|
||||||
|
)
|
||||||
]
|
]
|
||||||
for html, expected_dict, search_json_ld_kwargs in _TESTS:
|
for html, expected_dict, search_json_ld_kwargs in _TESTS:
|
||||||
expect_dict(
|
expect_dict(
|
||||||
|
|
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue