aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/foxgay.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-12-04 08:22:20 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-12-04 08:22:20 +0100
commit191cc41ba49a5d19e798131060c6976dbb2d357e (patch)
treec75f5e8c976080a8cc9317f824d07929c953cf7f /youtube_dl/extractor/foxgay.py
parent7f142293dff64096a34446ce1e7d674a9f2f1bc9 (diff)
downloadyoutube-dl-191cc41ba49a5d19e798131060c6976dbb2d357e.zip
youtube-dl-191cc41ba49a5d19e798131060c6976dbb2d357e.tar.gz
youtube-dl-191cc41ba49a5d19e798131060c6976dbb2d357e.tar.bz2
[foxgay] Add thumbnail to test definition
Diffstat (limited to 'youtube_dl/extractor/foxgay.py')
-rw-r--r--youtube_dl/extractor/foxgay.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/foxgay.py b/youtube_dl/extractor/foxgay.py
index a146a91..08b8ea3 100644
--- a/youtube_dl/extractor/foxgay.py
+++ b/youtube_dl/extractor/foxgay.py
@@ -14,14 +14,14 @@ class FoxgayIE(InfoExtractor):
'title': 'md5:6122f7ae0fc6b21ebdf59c5e083ce25a',
'description': 'md5:5e51dc4405f1fd315f7927daed2ce5cf',
'age_limit': 18,
+ 'thumbnail': 're:https?://.*\.jpg$',
},
}
def _real_extract(self, url):
video_id = self._match_id(url)
-
- # Download the initial webpage and extract all available data.
webpage = self._download_webpage(url, video_id)
+
title = self._html_search_regex(
r'<title>(?P<title>.*?)</title>',
webpage, 'title', fatal=False)