about summary refs log tree commit diff
path: root/youtube_dl/extractor/senateisvp.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-04-21 02:57:32 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-04-21 02:57:32 +0800
commitf91e1a8739a59bca1ced0bbc70f8cf9c3a33f778 (patch)
treeed877004bbe3d829405e878735b86dff06ec624e /youtube_dl/extractor/senateisvp.py
parent24e21613b670efefd2f284c8e7027023d0a64399 (diff)
downloadyoutube-dl-f91e1a8739a59bca1ced0bbc70f8cf9c3a33f778.tar.gz
youtube-dl-f91e1a8739a59bca1ced0bbc70f8cf9c3a33f778.tar.xz
youtube-dl-f91e1a8739a59bca1ced0bbc70f8cf9c3a33f778.zip
[Senate] Try to capture thumbnails
Diffstat (limited to 'youtube_dl/extractor/senateisvp.py')
-rw-r--r--youtube_dl/extractor/senateisvp.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube_dl/extractor/senateisvp.py b/youtube_dl/extractor/senateisvp.py
index 807979d13..a93874cad 100644
--- a/youtube_dl/extractor/senateisvp.py
+++ b/youtube_dl/extractor/senateisvp.py
@@ -53,6 +53,7 @@ class SenateISVPIE(InfoExtractor):
             'id': 'judiciary031715',
             'ext': 'flv',
             'title': 'Integrated Senate Video Player',
+            'thumbnail': 're:^https?://.*\.(?:jpg|png)$',
         }
     }, {
         'url': 'http://www.senate.gov/isvp/?type=live&comm=commerce&filename=commerce011514.mp4&auto_play=false',
@@ -87,6 +88,9 @@ class SenateISVPIE(InfoExtractor):
         webpage = self._download_webpage(url, video_id)
 
         title = self._html_search_regex(r'<title>([^<]+)</title>', webpage, video_id)
+        poster = qs.get('poster')
+        if poster:
+            thumbnail = poster[0]
 
         video_type = qs['type'][0]
         committee = video_type if video_type == 'arch' else qs['comm'][0]
@@ -119,6 +123,7 @@ class SenateISVPIE(InfoExtractor):
         info_dict = {
             'id': video_id,
             'title': title,
+            'thumbnail': thumbnail,
         }
 
         if len(formats) >= 1: