mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-16 05:13:21 +00:00
any
Authored by: bashonly
This commit is contained in:
parent
012da49769
commit
c62a5e5890
|
@ -314,11 +314,11 @@ def _real_extract(self, url):
|
|||
info = traverse_obj(attributes, {
|
||||
'title': ('title', {str.strip}),
|
||||
'description': ('content', {clean_html}),
|
||||
'thumbnail': ('image', ('large_url', 'url'), {url_or_none}),
|
||||
'thumbnail': ('image', ('large_url', 'url'), {url_or_none}, any),
|
||||
'timestamp': ('published_at', {parse_iso8601}),
|
||||
'like_count': ('like_count', {int_or_none}),
|
||||
'comment_count': ('comment_count', {int_or_none}),
|
||||
}, get_all=False)
|
||||
})
|
||||
|
||||
entries = []
|
||||
idx = 0
|
||||
|
|
Loading…
Reference in a new issue