mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 09:57:59 +09:00
[foxgay] Add thumbnail to test definition
This commit is contained in:
parent
7f142293df
commit
191cc41ba4
@ -14,14 +14,14 @@ class FoxgayIE(InfoExtractor):
|
|||||||
'title': 'md5:6122f7ae0fc6b21ebdf59c5e083ce25a',
|
'title': 'md5:6122f7ae0fc6b21ebdf59c5e083ce25a',
|
||||||
'description': 'md5:5e51dc4405f1fd315f7927daed2ce5cf',
|
'description': 'md5:5e51dc4405f1fd315f7927daed2ce5cf',
|
||||||
'age_limit': 18,
|
'age_limit': 18,
|
||||||
|
'thumbnail': 're:https?://.*\.jpg$',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
|
|
||||||
# Download the initial webpage and extract all available data.
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
title = self._html_search_regex(
|
title = self._html_search_regex(
|
||||||
r'<title>(?P<title>.*?)</title>',
|
r'<title>(?P<title>.*?)</title>',
|
||||||
webpage, 'title', fatal=False)
|
webpage, 'title', fatal=False)
|
||||||
|
Loading…
Reference in New Issue
Block a user