mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-10 16:17:12 +00:00
[instagram] Improve thumbnail extraction
This commit is contained in:
parent
f22b5a6b96
commit
6911312e53
@ -156,7 +156,7 @@ class InstagramIE(InfoExtractor):
|
||||
description = try_get(
|
||||
media, lambda x: x['edge_media_to_caption']['edges'][0]['node']['text'],
|
||||
compat_str) or media.get('caption')
|
||||
thumbnail = media.get('display_src')
|
||||
thumbnail = media.get('display_src') or media.get('display_url')
|
||||
timestamp = int_or_none(media.get('taken_at_timestamp') or media.get('date'))
|
||||
uploader = media.get('owner', {}).get('full_name')
|
||||
uploader_id = media.get('owner', {}).get('username')
|
||||
|
Loading…
Reference in New Issue
Block a user