mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-14 20:38:11 -05:00
parent
c4d95f67dd
commit
87408ccfd7
1 changed files with 4 additions and 1 deletions
|
@ -225,7 +225,10 @@ def og_get_size(media_type):
|
||||||
}), get_all=False),
|
}), get_all=False),
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'thumbnail': url_or_none(search('thumbnailUrl')),
|
'thumbnails': [{
|
||||||
|
'url': thumbnail_url,
|
||||||
|
'http_headers': {'Accept': '*/*'},
|
||||||
|
}] if (thumbnail_url := search(['thumbnailUrl', 'twitter:image', 'og:image'])) else None,
|
||||||
'http_headers': {'Accept': '*/*'},
|
'http_headers': {'Accept': '*/*'},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue