mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 07:50:11 +01:00
parent
52f5be1f1e
commit
86d2f4d248
@ -76,6 +76,23 @@ class ImgurIE(ImgurBaseIE):
|
|||||||
'thumbnail': 'https://i.imgur.com/jxBXAMCh.jpg',
|
'thumbnail': 'https://i.imgur.com/jxBXAMCh.jpg',
|
||||||
'dislike_count': int,
|
'dislike_count': int,
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
# needs Accept header, ref: https://github.com/yt-dlp/yt-dlp/issues/9458
|
||||||
|
'url': 'https://imgur.com/zV03bd5',
|
||||||
|
'md5': '59df97884e8ba76143ff6b640a0e2904',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'zV03bd5',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Ive - Liz',
|
||||||
|
'timestamp': 1710491255,
|
||||||
|
'upload_date': '20240315',
|
||||||
|
'like_count': int,
|
||||||
|
'dislike_count': int,
|
||||||
|
'duration': 56.92,
|
||||||
|
'comment_count': int,
|
||||||
|
'release_timestamp': 1710491255,
|
||||||
|
'release_date': '20240315',
|
||||||
|
},
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
@ -192,6 +209,7 @@ def og_get_size(media_type):
|
|||||||
'id': video_id,
|
'id': video_id,
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'thumbnail': url_or_none(search('thumbnailUrl')),
|
'thumbnail': url_or_none(search('thumbnailUrl')),
|
||||||
|
'http_headers': {'Accept': '*/*'},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user