浏览代码

[Senate] Try to capture thumbnails

Yen Chi Hsuan 10 年之前
父节点
当前提交
f91e1a8739
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      youtube_dl/extractor/senateisvp.py

+ 5 - 0
youtube_dl/extractor/senateisvp.py

@@ -53,6 +53,7 @@ class SenateISVPIE(InfoExtractor):
             'id': 'judiciary031715',
             'id': 'judiciary031715',
             'ext': 'flv',
             'ext': 'flv',
             'title': 'Integrated Senate Video Player',
             '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',
         '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)
         webpage = self._download_webpage(url, video_id)
 
 
         title = self._html_search_regex(r'<title>([^<]+)</title>', webpage, 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]
         video_type = qs['type'][0]
         committee = video_type if video_type == 'arch' else qs['comm'][0]
         committee = video_type if video_type == 'arch' else qs['comm'][0]
@@ -119,6 +123,7 @@ class SenateISVPIE(InfoExtractor):
         info_dict = {
         info_dict = {
             'id': video_id,
             'id': video_id,
             'title': title,
             'title': title,
+            'thumbnail': thumbnail,
         }
         }
 
 
         if len(formats) >= 1:
         if len(formats) >= 1: