1 from __future__ import unicode_literals
6 from .common import InfoExtractor
12 class CSpanIE(InfoExtractor):
13 _VALID_URL = r'http://(?:www\.)?c-spanvideo\.org/program/(?P<name>.*)'
16 'url': 'http://www.c-spanvideo.org/program/HolderonV',
18 'md5': '8e44ce11f0f725527daccc453f553eb0',
20 'title': 'Attorney General Eric Holder on Voting Rights Act Decision',
21 'description': 'Attorney General Eric Holder spoke to reporters following the Supreme Court decision in [Shelby County v. Holder] in which the court ruled that the preclearance provisions of the Voting Rights Act could not be enforced until Congress established new guidelines for review.',
23 'skip': 'Regularly fails on travis, for unknown reasons',
26 def _real_extract(self, url):
27 mobj = re.match(self._VALID_URL, url)
28 prog_name = mobj.group('name')
29 webpage = self._download_webpage(url, prog_name)
30 video_id = self._search_regex(r'prog(?:ram)?id=(.*?)&', webpage, 'video id')
32 title = self._html_search_regex(
33 r'<!-- title -->\n\s*<h1[^>]*>(.*?)</h1>', webpage, 'title')
34 description = self._og_search_description(webpage)
36 info_url = 'http://c-spanvideo.org/videoLibrary/assets/player/ajax-player.php?os=android&html5=program&id=' + video_id
37 data_json = self._download_webpage(
38 info_url, video_id, 'Downloading video info')
39 data = json.loads(data_json)
41 url = unescapeHTML(data['video']['files'][0]['path']['#text'])
47 'description': description,
48 'thumbnail': self._og_search_thumbnail(webpage),