1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-03 06:31:06 +02:00

[xvideos] Fix thumbnail extraction

Signed-off-by: Philipp Hagemeister <phihag@phihag.de>
This commit is contained in:
Mike Col 2014-01-22 19:01:41 +01:00 committed by Philipp Hagemeister
parent 11577ec054
commit 714d709a31

View File

@ -35,8 +35,8 @@ def _real_extract(self, url):
webpage, u'title')
# Extract video thumbnail
video_thumbnail = self._search_regex(r'http://(?:img.*?\.)xvideos.com/videos/thumbs/[a-fA-F0-9]+/[a-fA-F0-9]+/[a-fA-F0-9]+/[a-fA-F0-9]+/([a-fA-F0-9.]+jpg)',
webpage, u'thumbnail', fatal=False)
video_thumbnail = self._search_regex(r'url_bigthumb=(.+?)&amp',
webpage, u'thumbnail', fatal=False)
info = {
'id': video_id,