]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/pbs.py
[youtube:search_url] Fix extraction (Closes #6578)
[yt-dlp.git] / youtube_dl / extractor / pbs.py
CommitLineData
93f94209 1# coding: utf-8
22e7f1a6
PH
2from __future__ import unicode_literals
3
9779b63b 4import re
9779b63b
JMF
5
6from .common import InfoExtractor
a1a530b0 7from ..utils import (
f86d543e 8 ExtractorError,
5890eef6
S
9 determine_ext,
10 int_or_none,
27aede90 11 unified_strdate,
a1a530b0
PH
12 US_RATINGS,
13)
9779b63b
JMF
14
15
16class PBSIE(InfoExtractor):
22e7f1a6
PH
17 _VALID_URL = r'''(?x)https?://
18 (?:
27aede90
PH
19 # Direct video URL
20 video\.pbs\.org/(?:viralplayer|video)/(?P<id>[0-9]+)/? |
21 # Article with embedded player (or direct video)
22 (?:www\.)?pbs\.org/(?:[^/]+/){2,5}(?P<presumptive_id>[^/]+?)(?:\.html)?/?(?:$|[?\#]) |
22e7f1a6 23 # Player
773c0b4b 24 video\.pbs\.org/(?:widget/)?partnerplayer/(?P<player_id>[^/]+)/
22e7f1a6
PH
25 )
26 '''
9779b63b 27
4d9bd478
S
28 _TESTS = [
29 {
30 'url': 'http://www.pbs.org/tpt/constitution-usa-peter-sagal/watch/a-more-perfect-union/',
31 'md5': 'ce1888486f0908d555a8093cac9a7362',
32 'info_dict': {
33 'id': '2365006249',
34 'ext': 'mp4',
a5dd9a0c 35 'title': 'Constitution USA with Peter Sagal - A More Perfect Union',
4d9bd478
S
36 'description': 'md5:ba0c207295339c8d6eced00b7c363c6a',
37 'duration': 3190,
38 },
5b61070c
YCH
39 'params': {
40 'skip_download': True, # requires ffmpeg
41 },
9779b63b 42 },
cd6b4836
S
43 {
44 'url': 'http://www.pbs.org/wgbh/pages/frontline/losing-iraq/',
45 'md5': '143c98aa54a346738a3d78f54c925321',
46 'info_dict': {
47 'id': '2365297690',
48 'ext': 'mp4',
a5dd9a0c 49 'title': 'FRONTLINE - Losing Iraq',
cd6b4836
S
50 'description': 'md5:f5bfbefadf421e8bb8647602011caf8e',
51 'duration': 5050,
52 },
5b61070c
YCH
53 'params': {
54 'skip_download': True, # requires ffmpeg
55 }
cd6b4836 56 },
4d9bd478
S
57 {
58 'url': 'http://www.pbs.org/newshour/bb/education-jan-june12-cyberschools_02-23/',
59 'md5': 'b19856d7f5351b17a5ab1dc6a64be633',
60 'info_dict': {
61 'id': '2201174722',
62 'ext': 'mp4',
a5dd9a0c 63 'title': 'PBS NewsHour - Cyber Schools Gain Popularity, but Quality Questions Persist',
4d9bd478
S
64 'description': 'md5:5871c15cba347c1b3d28ac47a73c7c28',
65 'duration': 801,
66 },
67 },
756b046f
PH
68 {
69 'url': 'http://www.pbs.org/wnet/gperf/dudamel-conducts-verdi-requiem-hollywood-bowl-full-episode/3374/',
70 'md5': 'c62859342be2a0358d6c9eb306595978',
71 'info_dict': {
72 'id': '2365297708',
73 'ext': 'mp4',
74 'description': 'md5:68d87ef760660eb564455eb30ca464fe',
a5dd9a0c 75 'title': 'Great Performances - Dudamel Conducts Verdi Requiem at the Hollywood Bowl - Full',
756b046f
PH
76 'duration': 6559,
77 'thumbnail': 're:^https?://.*\.jpg$',
5b61070c
YCH
78 },
79 'params': {
80 'skip_download': True, # requires ffmpeg
81 },
27aede90
PH
82 },
83 {
84 'url': 'http://www.pbs.org/wgbh/nova/earth/killer-typhoon.html',
85 'md5': '908f3e5473a693b266b84e25e1cf9703',
86 'info_dict': {
87 'id': '2365160389',
88 'display_id': 'killer-typhoon',
89 'ext': 'mp4',
90 'description': 'md5:c741d14e979fc53228c575894094f157',
a5dd9a0c 91 'title': 'NOVA - Killer Typhoon',
27aede90
PH
92 'duration': 3172,
93 'thumbnail': 're:^https?://.*\.jpg$',
94 'upload_date': '20140122',
fb0d12c6 95 'age_limit': 10,
5b61070c
YCH
96 },
97 'params': {
98 'skip_download': True, # requires ffmpeg
99 },
9bbec552
S
100 },
101 {
102 'url': 'http://www.pbs.org/wgbh/pages/frontline/united-states-of-secrets/',
103 'info_dict': {
104 'id': 'united-states-of-secrets',
105 },
106 'playlist_count': 2,
dbe1a935
YCH
107 },
108 {
109 'url': 'http://www.pbs.org/wgbh/americanexperience/films/death/player/',
110 'info_dict': {
111 'id': '2280706814',
112 'display_id': 'player',
113 'ext': 'mp4',
a5dd9a0c 114 'title': 'American Experience - Death and the Civil War',
dbe1a935
YCH
115 'description': 'American Experience, TV’s most-watched history series, brings to life the compelling stories from our past that inform our understanding of the world today.',
116 'duration': 6705,
117 'thumbnail': 're:^https?://.*\.jpg$',
118 },
119 'params': {
120 'skip_download': True, # requires ffmpeg
5b61070c 121 },
a5dd9a0c 122 },
123 {
124 'url': 'http://video.pbs.org/video/2365367186/',
125 'info_dict': {
126 'id': '2365367186',
127 'display_id': '2365367186',
128 'ext': 'mp4',
129 'title': 'To Catch A Comet - Full Episode',
130 'description': 'On November 12, 2014, billions of kilometers from Earth, spacecraft orbiter Rosetta and lander Philae did what no other had dared to attempt \u2014 land on the volatile surface of a comet as it zooms around the sun at 67,000 km/hr. The European Space Agency hopes this mission can help peer into our past and unlock secrets of our origins.',
131 'duration': 3342,
132 'thumbnail': 're:^https?://.*\.jpg$',
133 },
134 'params': {
135 'skip_download': True, # requires ffmpeg
136 },
756b046f 137 }
4d9bd478 138 ]
9779b63b 139
27aede90 140 def _extract_webpage(self, url):
9779b63b 141 mobj = re.match(self._VALID_URL, url)
22e7f1a6
PH
142
143 presumptive_id = mobj.group('presumptive_id')
144 display_id = presumptive_id
145 if presumptive_id:
146 webpage = self._download_webpage(url, display_id)
8d7d9d34 147
27aede90
PH
148 upload_date = unified_strdate(self._search_regex(
149 r'<input type="hidden" id="air_date_[0-9]+" value="([^"]+)"',
150 webpage, 'upload date', default=None))
151
9bbec552
S
152 # tabbed frontline videos
153 tabbed_videos = re.findall(
154 r'<div[^>]+class="videotab[^"]*"[^>]+vid="(\d+)"', webpage)
155 if tabbed_videos:
156 return tabbed_videos, presumptive_id, upload_date
157
4d9bd478
S
158 MEDIA_ID_REGEXES = [
159 r"div\s*:\s*'videoembed'\s*,\s*mediaid\s*:\s*'(\d+)'", # frontline video embed
160 r'class="coveplayerid">([^<]+)<', # coveplayer
27aede90 161 r'<input type="hidden" id="pbs_video_id_[0-9]+" value="([0-9]+)"/>', # jwplayer
4d9bd478
S
162 ]
163
8d7d9d34 164 media_id = self._search_regex(
4d9bd478 165 MEDIA_ID_REGEXES, webpage, 'media ID', fatal=False, default=None)
8d7d9d34 166 if media_id:
27aede90 167 return media_id, presumptive_id, upload_date
8d7d9d34 168
22e7f1a6 169 url = self._search_regex(
dbe1a935 170 r'<iframe\s+[^>]*\s+src=["\']([^\'"]+partnerplayer[^\'"]+)["\']',
22e7f1a6
PH
171 webpage, 'player URL')
172 mobj = re.match(self._VALID_URL, url)
173
174 player_id = mobj.group('player_id')
175 if not display_id:
176 display_id = player_id
177 if player_id:
178 player_page = self._download_webpage(
179 url, display_id, note='Downloading player page',
180 errnote='Could not download player page')
181 video_id = self._search_regex(
182 r'<div\s+id="video_([0-9]+)"', player_page, 'video ID')
183 else:
184 video_id = mobj.group('id')
185 display_id = video_id
186
27aede90 187 return video_id, display_id, None
8d7d9d34
S
188
189 def _real_extract(self, url):
27aede90 190 video_id, display_id, upload_date = self._extract_webpage(url)
8d7d9d34 191
9bbec552
S
192 if isinstance(video_id, list):
193 entries = [self.url_result(
194 'http://video.pbs.org/video/%s' % vid_id, 'PBS', vid_id)
195 for vid_id in video_id]
196 return self.playlist_result(entries, display_id)
197
5890eef6
S
198 info = self._download_json(
199 'http://video.pbs.org/videoInfo/%s?format=json&type=partner' % video_id,
200 display_id)
201
202 formats = []
203 for encoding_name in ('recommended_encoding', 'alternate_encoding'):
204 redirect = info.get(encoding_name)
205 if not redirect:
206 continue
207 redirect_url = redirect.get('url')
208 if not redirect_url:
209 continue
210
211 redirect_info = self._download_json(
212 redirect_url + '?format=json', display_id,
213 'Downloading %s video url info' % encoding_name)
214
215 if redirect_info['status'] == 'error':
216 if redirect_info['http_code'] == 403:
217 message = (
218 'The video is not available in your region due to '
219 'right restrictions')
220 else:
221 message = redirect_info['message']
222 raise ExtractorError(message, expected=True)
223
224 format_url = redirect_info.get('url')
225 if not format_url:
226 continue
227
228 if determine_ext(format_url) == 'm3u8':
229 formats.extend(self._extract_m3u8_formats(
230 format_url, display_id, 'mp4', preference=1, m3u8_id='hls'))
f86d543e 231 else:
5890eef6
S
232 formats.append({
233 'url': format_url,
e8b9ab89 234 'format_id': redirect.get('eeid'),
5890eef6
S
235 })
236 self._sort_formats(formats)
f86d543e 237
a1a530b0
PH
238 rating_str = info.get('rating')
239 if rating_str is not None:
240 rating_str = rating_str.rpartition('-')[2]
241 age_limit = US_RATINGS.get(rating_str)
242
06a12933
S
243 subtitles = {}
244 closed_captions_url = info.get('closed_captions_url')
245 if closed_captions_url:
246 subtitles['en'] = [{
247 'ext': 'ttml',
248 'url': closed_captions_url,
249 }]
250
ce1bafdc
S
251 # info['title'] is often incomplete (e.g. 'Full Episode', 'Episode 5', etc)
252 # Try turning it to 'program - title' naming scheme if possible
0eacd2aa 253 alt_title = info.get('program', {}).get('title')
254 if alt_title:
c7620992 255 info['title'] = alt_title + ' - ' + re.sub(r'^' + alt_title + '[\s\-:]+', '', info['title'])
a5dd9a0c 256
22e7f1a6
PH
257 return {
258 'id': video_id,
27aede90 259 'display_id': display_id,
22e7f1a6 260 'title': info['title'],
22e7f1a6
PH
261 'description': info['program'].get('description'),
262 'thumbnail': info.get('image_url'),
5890eef6 263 'duration': int_or_none(info.get('duration')),
a1a530b0 264 'age_limit': age_limit,
27aede90 265 'upload_date': upload_date,
5890eef6 266 'formats': formats,
06a12933 267 'subtitles': subtitles,
22e7f1a6 268 }