aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/fktv.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-09-25 17:58:44 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-09-25 17:58:44 +0800
commit577380396171ba096240bfb3101f8151e32b587a (patch)
treeb037674fd593e1afbf7d533ed1910a4e294d7883 /youtube_dl/extractor/fktv.py
parent140359fc2cfe7e9cbfecfd2fd625c6407232fe0f (diff)
downloadyoutube-dl-577380396171ba096240bfb3101f8151e32b587a.tar.xz
[fktv] Correct thumbnail extraction and add the test
Diffstat (limited to 'youtube_dl/extractor/fktv.py')
-rw-r--r--youtube_dl/extractor/fktv.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/fktv.py b/youtube_dl/extractor/fktv.py
index b081eb535..289cbb8c8 100644
--- a/youtube_dl/extractor/fktv.py
+++ b/youtube_dl/extractor/fktv.py
@@ -21,6 +21,7 @@ class FKTVIE(InfoExtractor):
'id': '1',
'ext': 'mp4',
'title': 'Folge 1 vom 10. April 2007',
+ 'thumbnail': 're:^https?://.*\.jpg$',
},
}
@@ -29,11 +30,14 @@ class FKTVIE(InfoExtractor):
webpage = self._download_webpage('http://fernsehkritik.tv/folge-%s/play' % episode, episode)
title = clean_html(self._html_search_regex('<h3>([^<]+)</h3>', webpage, 'title'))
- matches = re.search(r'(?s)<video[^>]+poster="([^"]+)"[^>]*>(.*)</video>', webpage)
+ matches = re.search(r'(?s)<video[^>]+(?:poster="([^"]+)")?[^>]*>(.*)</video>', webpage)
if matches is None:
raise ExtractorError('Unable to extract the video')
poster, sources = matches.groups()
+ if poster is None:
+ self.report_warning('unable to extract thumbnail')
+
urls = re.findall(r'<source[^>]+src="([^"]+)"', sources)
formats = [{'url': url, 'format_id': determine_ext(url)} for url in urls]
return {