logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 6911312e53dc2b2ac76450741e7e86d963cb939a
parent f22b5a6b960bca57990ede16d0e06603d1b9ab0d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 26 Dec 2020 22:42:58 +0700

[instagram] Improve thumbnail extraction

Diffstat:

Myoutube_dl/extractor/instagram.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/instagram.py b/youtube_dl/extractor/instagram.py @@ -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')