]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/cspan.py
Add support for https for all extractors as preventive and future-proof measure
[yt-dlp.git] / youtube_dl / extractor / cspan.py
CommitLineData
ca9e7922
PH
1from __future__ import unicode_literals
2
aa0c8739
JMF
3import re
4
5from .common import InfoExtractor
6from ..utils import (
aea6e7fc 7 int_or_none,
ca9e7922 8 unescapeHTML,
009a3408 9 find_xpath_attr,
2fe1b5bd 10 smuggle_url,
672f1bd8 11 determine_ext,
355c7ad3 12 ExtractorError,
aa0c8739 13)
2fe1b5bd 14from .senateisvp import SenateISVPIE
aa0c8739 15
ca9e7922 16
aa0c8739 17class CSpanIE(InfoExtractor):
5886b38d 18 _VALID_URL = r'https?://(?:www\.)?c-span\.org/video/\?(?P<id>[0-9a-f]+)'
ca9e7922 19 IE_DESC = 'C-SPAN'
11a15be4 20 _TESTS = [{
009a3408 21 'url': 'http://www.c-span.org/video/?313572-1/HolderonV',
355c7ad3 22 'md5': '94b29a4f131ff03d23471dd6f60b6a1d',
ca9e7922 23 'info_dict': {
009a3408
JMF
24 'id': '315139',
25 'ext': 'mp4',
ca9e7922 26 'title': 'Attorney General Eric Holder on Voting Rights Act Decision',
30787f72 27 'description': 'Attorney General Eric Holder speaks 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.',
6f5ac90c 28 },
11577ec0 29 'skip': 'Regularly fails on travis, for unknown reasons',
11a15be4
PH
30 }, {
31 'url': 'http://www.c-span.org/video/?c4486943/cspan-international-health-care-models',
355c7ad3 32 'md5': '8e5fbfabe6ad0f89f3012a7943c1287b',
11a15be4 33 'info_dict': {
30787f72 34 'id': 'c4486943',
11a15be4 35 'ext': 'mp4',
30787f72 36 'title': 'CSPAN - International Health Care Models',
11a15be4
PH
37 'description': 'md5:7a985a2d595dba00af3d9c9f0783c967',
38 }
22a6f150
PH
39 }, {
40 'url': 'http://www.c-span.org/video/?318608-1/gm-ignition-switch-recall',
355c7ad3 41 'md5': '2ae5051559169baadba13fc35345ae74',
22a6f150
PH
42 'info_dict': {
43 'id': '342759',
92dcba1e 44 'ext': 'mp4',
22a6f150 45 'title': 'General Motors Ignition Switch Recall',
92dcba1e 46 'duration': 14848,
30787f72 47 'description': 'md5:118081aedd24bf1d3b68b3803344e7f3'
22a6f150 48 },
2fe1b5bd
YCH
49 }, {
50 # Video from senate.gov
51 'url': 'http://www.c-span.org/video/?104517-1/immigration-reforms-needed-protect-skilled-american-workers',
2fe1b5bd
YCH
52 'info_dict': {
53 'id': 'judiciary031715',
54 'ext': 'flv',
55 'title': 'Immigration Reforms Needed to Protect Skilled American Workers',
56 }
11a15be4 57 }]
aa0c8739
JMF
58
59 def _real_extract(self, url):
30787f72 60 video_id = self._match_id(url)
04e24906 61 video_type = None
30787f72 62 webpage = self._download_webpage(url, video_id)
6c6b8bd5
JMF
63 # We first look for clipid, because clipprog always appears before
64 patterns = [r'id=\'clip(%s)\'\s*value=\'([0-9]+)\'' % t for t in ('id', 'prog')]
65 results = list(filter(None, (re.search(p, webpage) for p in patterns)))
66 if results:
67 matches = results[0]
30787f72 68 video_type, video_id = matches.groups()
6c6b8bd5 69 video_type = 'clip' if video_type == 'id' else 'program'
30787f72 70 else:
f6932135
S
71 m = re.search(r'data-(?P<type>clip|prog)id=["\'](?P<id>\d+)', webpage)
72 if m:
73 video_id = m.group('id')
74 video_type = 'program' if m.group('type') == 'prog' else 'clip'
75 else:
76 senate_isvp_url = SenateISVPIE._search_iframe_url(webpage)
77 if senate_isvp_url:
78 title = self._og_search_title(webpage)
79 surl = smuggle_url(senate_isvp_url, {'force_title': title})
80 return self.url_result(surl, 'SenateISVP', video_id, title)
04e24906
JMF
81 if video_type is None or video_id is None:
82 raise ExtractorError('unable to find video id and type')
ca9e7922 83
2a776f97 84 def get_text_attr(d, attr):
85 return d.get(attr, {}).get('#text')
86
30787f72 87 data = self._download_json(
355c7ad3 88 'http://www.c-span.org/assets/player/ajax-player.php?os=android&html5=%s&id=%s' % (video_type, video_id),
89 video_id)['video']
90 if data['@status'] != 'Success':
2a776f97 91 raise ExtractorError('%s said: %s' % (self.IE_NAME, get_text_attr(data, 'error')), expected=True)
ca9e7922 92
aea6e7fc 93 doc = self._download_xml(
30787f72 94 'http://www.c-span.org/common/services/flashXml.php?%sid=%s' % (video_type, video_id),
009a3408
JMF
95 video_id)
96
30787f72 97 description = self._html_search_meta('description', webpage)
98
aea6e7fc
PH
99 title = find_xpath_attr(doc, './/string', 'name', 'title').text
100 thumbnail = find_xpath_attr(doc, './/string', 'name', 'poster').text
101
355c7ad3 102 files = data['files']
2a776f97 103 capfile = get_text_attr(data, 'capfile')
aea6e7fc 104
355c7ad3 105 entries = []
106 for partnum, f in enumerate(files):
107 formats = []
108 for quality in f['qualities']:
109 formats.append({
2a776f97 110 'format_id': '%s-%sp' % (get_text_attr(quality, 'bitrate'), get_text_attr(quality, 'height')),
111 'url': unescapeHTML(get_text_attr(quality, 'file')),
112 'height': int_or_none(get_text_attr(quality, 'height')),
113 'tbr': int_or_none(get_text_attr(quality, 'bitrate')),
355c7ad3 114 })
af9c2a07 115 if not formats:
68a0ea15 116 path = unescapeHTML(get_text_attr(f, 'path'))
af9c2a07
S
117 if not path:
118 continue
119 formats = self._extract_m3u8_formats(
120 path, video_id, 'mp4', entry_protocol='m3u8_native',
121 m3u8_id='hls') if determine_ext(path) == 'm3u8' else [{'url': path, }]
355c7ad3 122 self._sort_formats(formats)
123 entries.append({
124 'id': '%s_%d' % (video_id, partnum + 1),
125 'title': (
126 title if len(files) == 1 else
127 '%s part %d' % (title, partnum + 1)),
128 'formats': formats,
129 'description': description,
130 'thumbnail': thumbnail,
2a776f97 131 'duration': int_or_none(get_text_attr(f, 'length')),
355c7ad3 132 'subtitles': {
133 'en': [{
134 'url': capfile,
135 'ext': determine_ext(capfile, 'dfxp')
136 }],
137 } if capfile else None,
138 })
009a3408 139
92dcba1e
YCH
140 if len(entries) == 1:
141 entry = dict(entries[0])
30787f72 142 entry['id'] = 'c' + video_id if video_type == 'clip' else video_id
92dcba1e
YCH
143 return entry
144 else:
145 return {
146 '_type': 'playlist',
147 'entries': entries,
148 'title': title,
30787f72 149 'id': 'c' + video_id if video_type == 'clip' else video_id,
92dcba1e 150 }