thumbnail

This commit is contained in:
voidptr_t 2024-08-04 19:39:33 +03:00
parent 605741fbe8
commit c3896d0178

View File

@ -34,7 +34,6 @@ def _real_extract(self, url):
'url': hlsurl,
'ext': 'mp4',
'quality': 0 if len(formats) == 0 else 0 - len(formats),
'thumbnail': thumbnail,
'format_id': key,
'protocol': 'm3u8_native',
}
@ -45,4 +44,5 @@ def _real_extract(self, url):
'id': video_id,
'title': item.get('title'),
'formats': formats,
'thumbnails': [{'url': thumbnail}],
}