]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/bbc.py
[bbc] Add another title regex (Closes #8340)
[yt-dlp.git] / youtube_dl / extractor / bbc.py
CommitLineData
9afa1770 1# coding: utf-8
082c6c86
S
2from __future__ import unicode_literals
3
9afa1770 4import re
082c6c86 5
f13b1e7d 6from .common import InfoExtractor
8683b4d8
S
7from ..utils import (
8 ExtractorError,
9afa1770 9 float_or_none,
8683b4d8 10 int_or_none,
9afa1770
S
11 parse_duration,
12 parse_iso8601,
ae8bdfd1 13 remove_end,
dab062fb 14 unescapeHTML,
8683b4d8 15)
36e6f62c
JMF
16from ..compat import (
17 compat_etree_fromstring,
18 compat_HTTPError,
19)
082c6c86 20
d12a1a47 21
f13b1e7d 22class BBCCoUkIE(InfoExtractor):
082c6c86 23 IE_NAME = 'bbc.co.uk'
2e3fd9ec 24 IE_DESC = 'BBC iPlayer'
22d7368d 25 _ID_REGEX = r'[pb][\da-z]{7}'
f20a11ed
S
26 _VALID_URL = r'''(?x)
27 https?://
28 (?:www\.)?bbc\.co\.uk/
29 (?:
30 programmes/(?!articles/)|
31 iplayer(?:/[^/]+)?/(?:episode/|playlist/)|
32 music/clips[/#]|
33 radio/player/
34 )
35 (?P<id>%s)
36 ''' % _ID_REGEX
082c6c86 37
d12a1a47 38 _MEDIASELECTOR_URLS = [
26ccc68b
S
39 # Provides HQ HLS streams with even better quality that pc mediaset but fails
40 # with geolocation in some cases when it's even not geo restricted at all (e.g.
d781e293 41 # http://www.bbc.co.uk/programmes/b06bp7lf). Also may fail with selectionunavailable.
d1c694ea 42 'http://open.live.bbc.co.uk/mediaselector/5/select/version/2.0/mediaset/iptv-all/vpid/%s',
d12a1a47
S
43 'http://open.live.bbc.co.uk/mediaselector/5/select/version/2.0/mediaset/pc/vpid/%s',
44 ]
a8b081a0 45
e6174ee9
S
46 _MEDIASELECTION_NS = 'http://bbc.co.uk/2008/mp/mediaselection'
47 _EMP_PLAYLIST_NS = 'http://bbc.co.uk/2008/emp/playlist'
48
49 _NAMESPACES = (
50 _MEDIASELECTION_NS,
51 _EMP_PLAYLIST_NS,
52 )
53
2e3fd9ec
S
54 _TESTS = [
55 {
f2d0fc68 56 'url': 'http://www.bbc.co.uk/programmes/b039g8p7',
2e3fd9ec 57 'info_dict': {
f2d0fc68 58 'id': 'b039d07m',
2e3fd9ec 59 'ext': 'flv',
679bacf0 60 'title': 'Leonard Cohen, Kaleidoscope - BBC Radio 4',
c4914185 61 'description': 'The Canadian poet and songwriter reflects on his musical career.',
2e3fd9ec
S
62 },
63 'params': {
64 # rtmp download
65 'skip_download': True,
66 }
082c6c86 67 },
2e3fd9ec
S
68 {
69 'url': 'http://www.bbc.co.uk/iplayer/episode/b00yng5w/The_Man_in_Black_Series_3_The_Printed_Name/',
70 'info_dict': {
71 'id': 'b00yng1d',
72 'ext': 'flv',
73 'title': 'The Man in Black: Series 3: The Printed Name',
74 'description': "Mark Gatiss introduces Nicholas Pierpan's chilling tale of a writer's devilish pact with a mysterious man. Stars Ewan Bailey.",
75 'duration': 1800,
76 },
77 'params': {
78 # rtmp download
79 'skip_download': True,
c7f0177f
S
80 },
81 'skip': 'Episode is no longer available on BBC iPlayer Radio',
2e3fd9ec
S
82 },
83 {
84 'url': 'http://www.bbc.co.uk/iplayer/episode/b03vhd1f/The_Voice_UK_Series_3_Blind_Auditions_5/',
85 'info_dict': {
86 'id': 'b00yng1d',
87 'ext': 'flv',
17968e44
S
88 'title': 'The Voice UK: Series 3: Blind Auditions 5',
89 'description': "Emma Willis and Marvin Humes present the fifth set of blind auditions in the singing competition, as the coaches continue to build their teams based on voice alone.",
90 'duration': 5100,
2e3fd9ec
S
91 },
92 'params': {
93 # rtmp download
94 'skip_download': True,
95 },
96 'skip': 'Currently BBC iPlayer TV programmes are available to play in the UK only',
c056efa2
S
97 },
98 {
99 'url': 'http://www.bbc.co.uk/iplayer/episode/p026c7jt/tomorrows-worlds-the-unearthly-history-of-science-fiction-2-invasion',
100 'info_dict': {
101 'id': 'b03k3pb7',
102 'ext': 'flv',
103 'title': "Tomorrow's Worlds: The Unearthly History of Science Fiction",
104 'description': '2. Invasion',
105 'duration': 3600,
106 },
107 'params': {
108 # rtmp download
109 'skip_download': True,
110 },
111 'skip': 'Currently BBC iPlayer TV programmes are available to play in the UK only',
ae6986fb
S
112 }, {
113 'url': 'http://www.bbc.co.uk/programmes/b04v20dw',
114 'info_dict': {
115 'id': 'b04v209v',
116 'ext': 'flv',
117 'title': 'Pete Tong, The Essential New Tune Special',
118 'description': "Pete has a very special mix - all of 2014's Essential New Tunes!",
119 'duration': 10800,
120 },
121 'params': {
122 # rtmp download
123 'skip_download': True,
a3ef0e1c
YCH
124 },
125 'skip': 'Episode is no longer available on BBC iPlayer Radio',
c7e67594 126 }, {
5aa535c3 127 'url': 'http://www.bbc.co.uk/music/clips/p022h44b',
c7e67594
S
128 'note': 'Audio',
129 'info_dict': {
5aa535c3 130 'id': 'p022h44j',
c7e67594 131 'ext': 'flv',
5aa535c3
S
132 'title': 'BBC Proms Music Guides, Rachmaninov: Symphonic Dances',
133 'description': "In this Proms Music Guide, Andrew McGregor looks at Rachmaninov's Symphonic Dances.",
134 'duration': 227,
c7e67594
S
135 },
136 'params': {
137 # rtmp download
138 'skip_download': True,
139 }
140 }, {
141 'url': 'http://www.bbc.co.uk/music/clips/p025c0zz',
142 'note': 'Video',
143 'info_dict': {
144 'id': 'p025c103',
145 'ext': 'flv',
146 'title': 'Reading and Leeds Festival, 2014, Rae Morris - Closer (Live on BBC Three)',
147 'description': 'Rae Morris performs Closer for BBC Three at Reading 2014',
148 'duration': 226,
149 },
150 'params': {
151 # rtmp download
152 'skip_download': True,
153 }
e68ae99a
S
154 }, {
155 'url': 'http://www.bbc.co.uk/iplayer/episode/b054fn09/ad/natural-world-20152016-2-super-powered-owls',
156 'info_dict': {
157 'id': 'p02n76xf',
158 'ext': 'flv',
159 'title': 'Natural World, 2015-2016: 2. Super Powered Owls',
160 'description': 'md5:e4db5c937d0e95a7c6b5e654d429183d',
161 'duration': 3540,
162 },
163 'params': {
164 # rtmp download
165 'skip_download': True,
166 },
167 'skip': 'geolocation',
25fa8d66
YCH
168 }, {
169 'url': 'http://www.bbc.co.uk/iplayer/episode/b05zmgwn/royal-academy-summer-exhibition',
170 'info_dict': {
171 'id': 'b05zmgw1',
172 'ext': 'flv',
173 'description': 'Kirsty Wark and Morgan Quaintance visit the Royal Academy as it prepares for its annual artistic extravaganza, meeting people who have come together to make the show unique.',
174 'title': 'Royal Academy Summer Exhibition',
175 'duration': 3540,
176 },
177 'params': {
178 # rtmp download
179 'skip_download': True,
180 },
181 'skip': 'geolocation',
54914380
S
182 }, {
183 # iptv-all mediaset fails with geolocation however there is no geo restriction
184 # for this programme at all
5aa535c3 185 'url': 'http://www.bbc.co.uk/programmes/b06rkn85',
54914380 186 'info_dict': {
5aa535c3 187 'id': 'b06rkms3',
54914380 188 'ext': 'flv',
5aa535c3
S
189 'title': "Best of the Mini-Mixes 2015: Part 3, Annie Mac's Friday Night - BBC Radio 1",
190 'description': "Annie has part three in the Best of the Mini-Mixes 2015, plus the year's Most Played!",
54914380
S
191 },
192 'params': {
193 # rtmp download
194 'skip_download': True,
195 },
31763975
S
196 }, {
197 'url': 'http://www.bbc.co.uk/iplayer/playlist/p01dvks4',
198 'only_matching': True,
c7e67594
S
199 }, {
200 'url': 'http://www.bbc.co.uk/music/clips#p02frcc3',
201 'only_matching': True,
0692ef86
S
202 }, {
203 'url': 'http://www.bbc.co.uk/iplayer/cbeebies/episode/b0480276/bing-14-atchoo',
204 'only_matching': True,
f20a11ed
S
205 }, {
206 'url': 'http://www.bbc.co.uk/radio/player/p03cchwf',
207 'only_matching': True,
ae6986fb 208 }
2e3fd9ec
S
209 ]
210
d12a1a47
S
211 class MediaSelectionError(Exception):
212 def __init__(self, id):
213 self.id = id
214
2e3fd9ec
S
215 def _extract_asx_playlist(self, connection, programme_id):
216 asx = self._download_xml(connection.get('href'), programme_id, 'Downloading ASX playlist')
217 return [ref.get('href') for ref in asx.findall('./Entry/ref')]
218
219 def _extract_connection(self, connection, programme_id):
220 formats = []
e6174ee9 221 kind = connection.get('kind')
2e3fd9ec
S
222 protocol = connection.get('protocol')
223 supplier = connection.get('supplier')
224 if protocol == 'http':
225 href = connection.get('href')
7a896817 226 transfer_format = connection.get('transferFormat')
2e3fd9ec
S
227 # ASX playlist
228 if supplier == 'asx':
229 for i, ref in enumerate(self._extract_asx_playlist(connection, programme_id)):
230 formats.append({
231 'url': ref,
232 'format_id': 'ref%s_%s' % (i, supplier),
233 })
7a896817
S
234 # Skip DASH until supported
235 elif transfer_format == 'dash':
236 pass
d1c694ea 237 elif transfer_format == 'hls':
7e5edcfd 238 formats.extend(self._extract_m3u8_formats(
d1c694ea 239 href, programme_id, ext='mp4', entry_protocol='m3u8_native',
7e5edcfd 240 m3u8_id=supplier, fatal=False))
2e3fd9ec
S
241 # Direct link
242 else:
243 formats.append({
244 'url': href,
e6174ee9 245 'format_id': supplier or kind or protocol,
2e3fd9ec
S
246 })
247 elif protocol == 'rtmp':
248 application = connection.get('application', 'ondemand')
249 auth_string = connection.get('authString')
250 identifier = connection.get('identifier')
251 server = connection.get('server')
252 formats.append({
253 'url': '%s://%s/%s?%s' % (protocol, server, application, auth_string),
254 'play_path': identifier,
255 'app': '%s?%s' % (application, auth_string),
256 'page_url': 'http://www.bbc.co.uk',
257 'player_url': 'http://www.bbc.co.uk/emp/releases/iplayer/revisions/617463_618125_4/617463_618125_4_emp.swf',
258 'rtmp_live': False,
259 'ext': 'flv',
260 'format_id': supplier,
261 })
262 return formats
263
264 def _extract_items(self, playlist):
e6174ee9
S
265 return playlist.findall('./{%s}item' % self._EMP_PLAYLIST_NS)
266
267 def _findall_ns(self, element, xpath):
268 elements = []
269 for ns in self._NAMESPACES:
270 elements.extend(element.findall(xpath % ns))
271 return elements
2e3fd9ec
S
272
273 def _extract_medias(self, media_selection):
e6174ee9
S
274 error = media_selection.find('./{%s}error' % self._MEDIASELECTION_NS)
275 if error is None:
276 media_selection.find('./{%s}error' % self._EMP_PLAYLIST_NS)
c056efa2 277 if error is not None:
d12a1a47 278 raise BBCCoUkIE.MediaSelectionError(error.get('id'))
e6174ee9 279 return self._findall_ns(media_selection, './{%s}media')
2e3fd9ec
S
280
281 def _extract_connections(self, media):
e6174ee9 282 return self._findall_ns(media, './{%s}connection')
2e3fd9ec
S
283
284 def _extract_video(self, media, programme_id):
285 formats = []
d97f5cd7 286 vbr = int_or_none(media.get('bitrate'))
2e3fd9ec
S
287 vcodec = media.get('encoding')
288 service = media.get('service')
d97f5cd7
S
289 width = int_or_none(media.get('width'))
290 height = int_or_none(media.get('height'))
291 file_size = int_or_none(media.get('media_file_size'))
2e3fd9ec
S
292 for connection in self._extract_connections(media):
293 conn_formats = self._extract_connection(connection, programme_id)
294 for format in conn_formats:
295 format.update({
2e3fd9ec
S
296 'width': width,
297 'height': height,
298 'vbr': vbr,
299 'vcodec': vcodec,
300 'filesize': file_size,
301 })
e6174ee9
S
302 if service:
303 format['format_id'] = '%s_%s' % (service, format['format_id'])
2e3fd9ec
S
304 formats.extend(conn_formats)
305 return formats
306
307 def _extract_audio(self, media, programme_id):
308 formats = []
d97f5cd7 309 abr = int_or_none(media.get('bitrate'))
2e3fd9ec
S
310 acodec = media.get('encoding')
311 service = media.get('service')
312 for connection in self._extract_connections(media):
313 conn_formats = self._extract_connection(connection, programme_id)
314 for format in conn_formats:
315 format.update({
316 'format_id': '%s_%s' % (service, format['format_id']),
317 'abr': abr,
318 'acodec': acodec,
319 })
320 formats.extend(conn_formats)
321 return formats
322
f13b1e7d 323 def _get_subtitles(self, media, programme_id):
2e3fd9ec
S
324 subtitles = {}
325 for connection in self._extract_connections(media):
326 captions = self._download_xml(connection.get('href'), programme_id, 'Downloading captions')
327 lang = captions.get('{http://www.w3.org/XML/1998/namespace}lang', 'en')
f13b1e7d
JMF
328 subtitles[lang] = [
329 {
330 'url': connection.get('href'),
331 'ext': 'ttml',
332 },
f13b1e7d 333 ]
2e3fd9ec 334 return subtitles
082c6c86 335
d12a1a47
S
336 def _raise_extractor_error(self, media_selection_error):
337 raise ExtractorError(
338 '%s returned error: %s' % (self.IE_NAME, media_selection_error.id),
339 expected=True)
340
c056efa2 341 def _download_media_selector(self, programme_id):
d12a1a47
S
342 last_exception = None
343 for mediaselector_url in self._MEDIASELECTOR_URLS:
344 try:
345 return self._download_media_selector_url(
346 mediaselector_url % programme_id, programme_id)
347 except BBCCoUkIE.MediaSelectionError as e:
d781e293 348 if e.id in ('notukerror', 'geolocation', 'selectionunavailable'):
d12a1a47
S
349 last_exception = e
350 continue
351 self._raise_extractor_error(e)
352 self._raise_extractor_error(last_exception)
9afa1770
S
353
354 def _download_media_selector_url(self, url, programme_id=None):
c056efa2
S
355 try:
356 media_selection = self._download_xml(
9afa1770 357 url, programme_id, 'Downloading media selection XML')
c056efa2 358 except ExtractorError as ee:
d781e293 359 if isinstance(ee.cause, compat_HTTPError) and ee.cause.code in (403, 404):
36e6f62c 360 media_selection = compat_etree_fromstring(ee.cause.read().decode('utf-8'))
2e3fd9ec 361 else:
c056efa2 362 raise
9afa1770 363 return self._process_media_selector(media_selection, programme_id)
082c6c86 364
9afa1770 365 def _process_media_selector(self, media_selection, programme_id):
082c6c86 366 formats = []
2e3fd9ec
S
367 subtitles = None
368
c056efa2
S
369 for media in self._extract_medias(media_selection):
370 kind = media.get('kind')
371 if kind == 'audio':
372 formats.extend(self._extract_audio(media, programme_id))
373 elif kind == 'video':
374 formats.extend(self._extract_video(media, programme_id))
375 elif kind == 'captions':
f13b1e7d 376 subtitles = self.extract_subtitles(media, programme_id)
c056efa2 377 return formats, subtitles
2e3fd9ec 378
ae6986fb
S
379 def _download_playlist(self, playlist_id):
380 try:
381 playlist = self._download_json(
382 'http://www.bbc.co.uk/programmes/%s/playlist.json' % playlist_id,
383 playlist_id, 'Downloading playlist JSON')
384
385 version = playlist.get('defaultAvailableVersion')
386 if version:
387 smp_config = version['smpConfig']
388 title = smp_config['title']
389 description = smp_config['summary']
390 for item in smp_config['items']:
391 kind = item['kind']
392 if kind != 'programme' and kind != 'radioProgramme':
393 continue
394 programme_id = item.get('vpid')
d97f5cd7 395 duration = int_or_none(item.get('duration'))
ae6986fb
S
396 formats, subtitles = self._download_media_selector(programme_id)
397 return programme_id, title, description, duration, formats, subtitles
398 except ExtractorError as ee:
f813928e 399 if not (isinstance(ee.cause, compat_HTTPError) and ee.cause.code == 404):
ae6986fb
S
400 raise
401
402 # fallback to legacy playlist
9afa1770
S
403 return self._process_legacy_playlist(playlist_id)
404
405 def _process_legacy_playlist_url(self, url, display_id):
406 playlist = self._download_legacy_playlist_url(url, display_id)
407 return self._extract_from_legacy_playlist(playlist, display_id)
408
409 def _process_legacy_playlist(self, playlist_id):
410 return self._process_legacy_playlist_url(
411 'http://www.bbc.co.uk/iplayer/playlist/%s' % playlist_id, playlist_id)
412
413 def _download_legacy_playlist_url(self, url, playlist_id=None):
414 return self._download_xml(
415 url, playlist_id, 'Downloading legacy playlist XML')
ae6986fb 416
9afa1770 417 def _extract_from_legacy_playlist(self, playlist, playlist_id):
e6174ee9 418 no_items = playlist.find('./{%s}noItems' % self._EMP_PLAYLIST_NS)
ae6986fb
S
419 if no_items is not None:
420 reason = no_items.get('reason')
421 if reason == 'preAvailability':
422 msg = 'Episode %s is not yet available' % playlist_id
423 elif reason == 'postAvailability':
424 msg = 'Episode %s is no longer available' % playlist_id
425 elif reason == 'noMedia':
426 msg = 'Episode %s is not currently available' % playlist_id
427 else:
428 msg = 'Episode %s is not available: %s' % (playlist_id, reason)
429 raise ExtractorError(msg, expected=True)
430
431 for item in self._extract_items(playlist):
432 kind = item.get('kind')
433 if kind != 'programme' and kind != 'radioProgramme':
434 continue
e6174ee9
S
435 title = playlist.find('./{%s}title' % self._EMP_PLAYLIST_NS).text
436 description_el = playlist.find('./{%s}summary' % self._EMP_PLAYLIST_NS)
8daeeedc 437 description = description_el.text if description_el is not None else None
9afa1770
S
438
439 def get_programme_id(item):
440 def get_from_attributes(item):
441 for p in('identifier', 'group'):
442 value = item.get(p)
443 if value and re.match(r'^[pb][\da-z]{7}$', value):
444 return value
445 get_from_attributes(item)
e6174ee9 446 mediator = item.find('./{%s}mediator' % self._EMP_PLAYLIST_NS)
9afa1770
S
447 if mediator is not None:
448 return get_from_attributes(mediator)
449
450 programme_id = get_programme_id(item)
d97f5cd7 451 duration = int_or_none(item.get('duration'))
e6174ee9
S
452
453 if programme_id:
454 formats, subtitles = self._download_media_selector(programme_id)
455 else:
456 formats, subtitles = self._process_media_selector(item, playlist_id)
457 programme_id = playlist_id
ae6986fb
S
458
459 return programme_id, title, description, duration, formats, subtitles
460
c056efa2
S
461 def _real_extract(self, url):
462 group_id = self._match_id(url)
463
464 webpage = self._download_webpage(url, group_id, 'Downloading video page')
465
8683b4d8 466 programme_id = None
679bacf0 467 duration = None
8683b4d8
S
468
469 tviplayer = self._search_regex(
470 r'mediator\.bind\(({.+?})\s*,\s*document\.getElementById',
471 webpage, 'player', default=None)
472
473 if tviplayer:
474 player = self._parse_json(tviplayer, group_id).get('player', {})
475 duration = int_or_none(player.get('duration'))
476 programme_id = player.get('vpid')
477
478 if not programme_id:
479 programme_id = self._search_regex(
22d7368d 480 r'"vpid"\s*:\s*"(%s)"' % self._ID_REGEX, webpage, 'vpid', fatal=False, default=None)
8683b4d8 481
c056efa2 482 if programme_id:
c056efa2 483 formats, subtitles = self._download_media_selector(programme_id)
88fb59d9 484 title = self._og_search_title(webpage, default=None) or self._html_search_regex(
50e989e2
S
485 (r'<h2[^>]+id="parent-title"[^>]*>(.+?)</h2>',
486 r'<div[^>]+class="info"[^>]*>\s*<h1>(.+?)</h1>'), webpage, 'title')
8683b4d8 487 description = self._search_regex(
25fa8d66 488 r'<p class="[^"]*medium-description[^"]*">([^<]+)</p>',
679bacf0
YCH
489 webpage, 'description', default=None)
490 if not description:
491 description = self._html_search_meta('description', webpage)
c056efa2 492 else:
ae6986fb 493 programme_id, title, description, duration, formats, subtitles = self._download_playlist(group_id)
2e3fd9ec 494
082c6c86
S
495 self._sort_formats(formats)
496
497 return {
2e3fd9ec 498 'id': programme_id,
082c6c86
S
499 'title': title,
500 'description': description,
650cfd0c 501 'thumbnail': self._og_search_thumbnail(webpage, default=None),
082c6c86
S
502 'duration': duration,
503 'formats': formats,
2e3fd9ec 504 'subtitles': subtitles,
5f6a1245 505 }
10273d6e 506
507
9afa1770
S
508class BBCIE(BBCCoUkIE):
509 IE_NAME = 'bbc'
510 IE_DESC = 'BBC'
511 _VALID_URL = r'https?://(?:www\.)?bbc\.(?:com|co\.uk)/(?:[^/]+/)+(?P<id>[^/#?]+)'
10273d6e 512
d12a1a47 513 _MEDIASELECTOR_URLS = [
55ebae26
S
514 # Provides HQ HLS streams but fails with geolocation in some cases when it's
515 # even not geo restricted at all
516 'http://open.live.bbc.co.uk/mediaselector/5/select/version/2.0/mediaset/iptv-all/vpid/%s',
d12a1a47
S
517 # Provides more formats, namely direct mp4 links, but fails on some videos with
518 # notukerror for non UK (?) users (e.g.
519 # http://www.bbc.com/travel/story/20150625-sri-lankas-spicy-secret)
520 'http://open.live.bbc.co.uk/mediaselector/4/mtis/stream/%s',
521 # Provides fewer formats, but works everywhere for everybody (hopefully)
522 'http://open.live.bbc.co.uk/mediaselector/5/select/version/2.0/mediaset/journalism-pc/vpid/%s',
523 ]
10273d6e 524
525 _TESTS = [{
6a747190 526 # article with multiple videos embedded with data-playable containing vpids
10273d6e 527 'url': 'http://www.bbc.com/news/world-europe-32668511',
528 'info_dict': {
529 'id': 'world-europe-32668511',
530 'title': 'Russia stages massive WW2 parade despite Western boycott',
9afa1770 531 'description': 'md5:00ff61976f6081841f759a08bf78cc9c',
10273d6e 532 },
533 'playlist_count': 2,
a3bfddfa 534 }, {
6a747190 535 # article with multiple videos embedded with data-playable (more videos)
10273d6e 536 'url': 'http://www.bbc.com/news/business-28299555',
537 'info_dict': {
538 'id': 'business-28299555',
539 'title': 'Farnborough Airshow: Video highlights',
9afa1770 540 'description': 'BBC reports and video highlights at the Farnborough Airshow.',
10273d6e 541 },
542 'playlist_count': 9,
9afa1770 543 'skip': 'Save time',
88ed52ae
S
544 }, {
545 # article with multiple videos embedded with `new SMP()`
6a747190 546 # broken
88ed52ae
S
547 'url': 'http://www.bbc.co.uk/blogs/adamcurtis/entries/3662a707-0af9-3149-963f-47bea720b460',
548 'info_dict': {
549 'id': '3662a707-0af9-3149-963f-47bea720b460',
550 'title': 'BBC Blogs - Adam Curtis - BUGGER',
551 },
552 'playlist_count': 18,
a3bfddfa 553 }, {
6a747190 554 # single video embedded with data-playable containing vpid
10273d6e 555 'url': 'http://www.bbc.com/news/world-europe-32041533',
10273d6e 556 'info_dict': {
557 'id': 'p02mprgb',
55ebae26 558 'ext': 'mp4',
10273d6e 559 'title': 'Aerial footage showed the site of the crash in the Alps - courtesy BFM TV',
55ebae26 560 'description': 'md5:2868290467291b37feda7863f7a83f54',
10273d6e 561 'duration': 47,
9afa1770 562 'timestamp': 1427219242,
da92eeae 563 'upload_date': '20150324',
10273d6e 564 },
565 'params': {
9afa1770 566 # rtmp download
10273d6e 567 'skip_download': True,
568 }
a3bfddfa 569 }, {
6a747190
S
570 # article with single video embedded with data-playable containing XML playlist
571 # with direct video links as progressiveDownloadUrl (for now these are extracted)
572 # and playlist with f4m and m3u8 as streamingUrl
de939d89 573 'url': 'http://www.bbc.com/turkce/haberler/2015/06/150615_telabyad_kentin_cogu',
de939d89 574 'info_dict': {
9afa1770 575 'id': '150615_telabyad_kentin_cogu',
de939d89 576 'ext': 'mp4',
9afa1770 577 'title': "YPG: Tel Abyad'ın tamamı kontrolümüzde",
9afa1770 578 'timestamp': 1434397334,
da92eeae 579 'upload_date': '20150615',
de939d89 580 },
581 'params': {
582 'skip_download': True,
583 }
c936d8cc 584 }, {
6a747190 585 # single video embedded with data-playable containing XML playlists (regional section)
de939d89 586 'url': 'http://www.bbc.com/mundo/video_fotos/2015/06/150619_video_honduras_militares_hospitales_corrupcion_aw',
de939d89 587 'info_dict': {
9afa1770 588 'id': '150619_video_honduras_militares_hospitales_corrupcion_aw',
de939d89 589 'ext': 'mp4',
9afa1770 590 'title': 'Honduras militariza sus hospitales por nuevo escándalo de corrupción',
9afa1770 591 'timestamp': 1434713142,
da92eeae 592 'upload_date': '20150619',
de939d89 593 },
594 'params': {
595 'skip_download': True,
596 }
a346b1ff
S
597 }, {
598 # single video from video playlist embedded with vxp-playlist-data JSON
599 'url': 'http://www.bbc.com/news/video_and_audio/must_see/33376376',
600 'info_dict': {
601 'id': 'p02w6qjc',
55ebae26 602 'ext': 'mp4',
a346b1ff
S
603 'title': '''Judge Mindy Glazer: "I'm sorry to see you here... I always wondered what happened to you"''',
604 'duration': 56,
0bc4ee60 605 'description': '''Judge Mindy Glazer: "I'm sorry to see you here... I always wondered what happened to you"''',
a346b1ff
S
606 },
607 'params': {
608 'skip_download': True,
609 }
9afa1770
S
610 }, {
611 # single video story with digitalData
612 'url': 'http://www.bbc.com/travel/story/20150625-sri-lankas-spicy-secret',
613 'info_dict': {
614 'id': 'p02q6gc4',
615 'ext': 'flv',
616 'title': 'Sri Lanka’s spicy secret',
617 'description': 'As a new train line to Jaffna opens up the country’s north, travellers can experience a truly distinct slice of Tamil culture.',
618 'timestamp': 1437674293,
619 'upload_date': '20150723',
620 },
621 'params': {
622 # rtmp download
623 'skip_download': True,
624 }
625 }, {
626 # single video story without digitalData
627 'url': 'http://www.bbc.com/autos/story/20130513-hyundais-rock-star',
628 'info_dict': {
629 'id': 'p018zqqg',
55ebae26 630 'ext': 'mp4',
9afa1770
S
631 'title': 'Hyundai Santa Fe Sport: Rock star',
632 'description': 'md5:b042a26142c4154a6e472933cf20793d',
ae8bdfd1
S
633 'timestamp': 1415867444,
634 'upload_date': '20141113',
9afa1770
S
635 },
636 'params': {
637 # rtmp download
638 'skip_download': True,
639 }
640 }, {
6a747190 641 # single video with playlist.sxml URL in playlist param
9afa1770
S
642 'url': 'http://www.bbc.com/sport/0/football/33653409',
643 'info_dict': {
644 'id': 'p02xycnp',
55ebae26 645 'ext': 'mp4',
9afa1770 646 'title': 'Transfers: Cristiano Ronaldo to Man Utd, Arsenal to spend?',
7033bc1a 647 'description': 'BBC Sport\'s David Ornstein has the latest transfer gossip, including rumours of a Manchester United return for Cristiano Ronaldo.',
9afa1770
S
648 'duration': 140,
649 },
650 'params': {
651 # rtmp download
652 'skip_download': True,
653 }
b5d48cb1 654 }, {
6a747190 655 # article with multiple videos embedded with playlist.sxml in playlist param
b5d48cb1
S
656 'url': 'http://www.bbc.com/sport/0/football/34475836',
657 'info_dict': {
658 'id': '34475836',
659 'title': 'What Liverpool can expect from Klopp',
660 },
661 'playlist_count': 3,
9afa1770
S
662 }, {
663 # single video with playlist URL from weather section
664 'url': 'http://www.bbc.com/weather/features/33601775',
665 'only_matching': True,
666 }, {
667 # custom redirection to www.bbc.com
668 'url': 'http://www.bbc.co.uk/news/science-environment-33661876',
669 'only_matching': True,
10273d6e 670 }]
671
9afa1770
S
672 @classmethod
673 def suitable(cls, url):
a65402ef 674 return False if BBCCoUkIE.suitable(url) or BBCCoUkArticleIE.suitable(url) else super(BBCIE, cls).suitable(url)
9afa1770
S
675
676 def _extract_from_media_meta(self, media_meta, video_id):
677 # Direct links to media in media metadata (e.g.
678 # http://www.bbc.com/turkce/haberler/2015/06/150615_telabyad_kentin_cogu)
679 # TODO: there are also f4m and m3u8 streams incorporated in playlist.sxml
680 source_files = media_meta.get('sourceFiles')
681 if source_files:
682 return [{
683 'url': f['url'],
684 'format_id': format_id,
685 'ext': f.get('encoding'),
686 'tbr': float_or_none(f.get('bitrate'), 1000),
687 'filesize': int_or_none(f.get('filesize')),
688 } for format_id, f in source_files.items() if f.get('url')], []
689
690 programme_id = media_meta.get('externalId')
691 if programme_id:
692 return self._download_media_selector(programme_id)
693
694 # Process playlist.sxml as legacy playlist
695 href = media_meta.get('href')
696 if href:
697 playlist = self._download_legacy_playlist_url(href)
698 _, _, _, _, formats, subtitles = self._extract_from_legacy_playlist(playlist, video_id)
699 return formats, subtitles
700
701 return [], []
702
baf39a1a
S
703 def _extract_from_playlist_sxml(self, url, playlist_id, timestamp):
704 programme_id, title, description, duration, formats, subtitles = \
705 self._process_legacy_playlist_url(url, playlist_id)
706 self._sort_formats(formats)
707 return {
708 'id': programme_id,
709 'title': title,
710 'description': description,
711 'duration': duration,
712 'timestamp': timestamp,
713 'formats': formats,
714 'subtitles': subtitles,
715 }
716
10273d6e 717 def _real_extract(self, url):
9afa1770
S
718 playlist_id = self._match_id(url)
719
720 webpage = self._download_webpage(url, playlist_id)
721
350e02d4
YCH
722 json_ld_info = self._search_json_ld(webpage, playlist_id, default=None)
723 timestamp = json_ld_info.get('timestamp')
724 playlist_title = json_ld_info.get('title')
725 playlist_description = json_ld_info.get('description')
ae8bdfd1
S
726
727 if not timestamp:
728 timestamp = parse_iso8601(self._search_regex(
729 [r'<meta[^>]+property="article:published_time"[^>]+content="([^"]+)"',
730 r'itemprop="datePublished"[^>]+datetime="([^"]+)"',
6f789365 731 r'"datePublished":\s*"([^"]+)'],
ae8bdfd1 732 webpage, 'date', default=None))
9afa1770 733
78f9d843
S
734 entries = []
735
de665713
S
736 # article with multiple videos embedded with playlist.sxml (e.g.
737 # http://www.bbc.com/sport/0/football/34475836)
738 playlists = re.findall(r'<param[^>]+name="playlist"[^>]+value="([^"]+)"', webpage)
222e11d4 739 playlists.extend(re.findall(r'data-media-id="([^"]+/playlist\.sxml)"', webpage))
de665713 740 if playlists:
baf39a1a
S
741 entries = [
742 self._extract_from_playlist_sxml(playlist_url, playlist_id, timestamp)
743 for playlist_url in playlists]
de939d89 744
78f9d843
S
745 # news article with multiple videos embedded with data-playable
746 data_playables = re.findall(r'data-playable=(["\'])({.+?})\1', webpage)
747 if data_playables:
748 for _, data_playable_json in data_playables:
749 data_playable = self._parse_json(
750 unescapeHTML(data_playable_json), playlist_id, fatal=False)
751 if not data_playable:
752 continue
baf39a1a
S
753 settings = data_playable.get('settings', {})
754 if settings:
78f9d843
S
755 # data-playable with video vpid in settings.playlistObject.items (e.g.
756 # http://www.bbc.com/news/world-us-canada-34473351)
baf39a1a
S
757 playlist_object = settings.get('playlistObject', {})
758 if playlist_object:
759 items = playlist_object.get('items')
760 if items and isinstance(items, list):
78f9d843
S
761 title = playlist_object['title']
762 description = playlist_object.get('summary')
baf39a1a
S
763 duration = int_or_none(items[0].get('duration'))
764 programme_id = items[0].get('vpid')
78f9d843
S
765 formats, subtitles = self._download_media_selector(programme_id)
766 self._sort_formats(formats)
767 entries.append({
768 'id': programme_id,
769 'title': title,
770 'description': description,
771 'timestamp': timestamp,
772 'duration': duration,
773 'formats': formats,
774 'subtitles': subtitles,
775 })
776 else:
777 # data-playable without vpid but with a playlist.sxml URLs
778 # in otherSettings.playlist (e.g.
779 # http://www.bbc.com/turkce/multimedya/2015/10/151010_vid_ankara_patlama_ani)
780 playlist = data_playable.get('otherSettings', {}).get('playlist', {})
781 if playlist:
782 entries.append(self._extract_from_playlist_sxml(
783 playlist.get('progressiveDownloadUrl'), playlist_id, timestamp))
784
785 if entries:
ae8bdfd1
S
786 playlist_title = playlist_title or remove_end(self._og_search_title(webpage), ' - BBC News')
787 playlist_description = playlist_description or self._og_search_description(webpage, default=None)
78f9d843
S
788 return self.playlist_result(entries, playlist_id, playlist_title, playlist_description)
789
790 # single video story (e.g. http://www.bbc.com/travel/story/20150625-sri-lankas-spicy-secret)
791 programme_id = self._search_regex(
22d7368d
S
792 [r'data-video-player-vpid="(%s)"' % self._ID_REGEX,
793 r'<param[^>]+name="externalIdentifier"[^>]+value="(%s)"' % self._ID_REGEX,
794 r'videoId\s*:\s*["\'](%s)["\']' % self._ID_REGEX],
78f9d843 795 webpage, 'vpid', default=None)
dab062fb 796
9afa1770
S
797 if programme_id:
798 formats, subtitles = self._download_media_selector(programme_id)
799 self._sort_formats(formats)
800 # digitalData may be missing (e.g. http://www.bbc.com/autos/story/20130513-hyundais-rock-star)
801 digital_data = self._parse_json(
802 self._search_regex(
803 r'var\s+digitalData\s*=\s*({.+?});?\n', webpage, 'digital data', default='{}'),
804 programme_id, fatal=False)
805 page_info = digital_data.get('page', {}).get('pageInfo', {})
806 title = page_info.get('pageName') or self._og_search_title(webpage)
807 description = page_info.get('description') or self._og_search_description(webpage)
808 timestamp = parse_iso8601(page_info.get('publicationDate')) or timestamp
809 return {
810 'id': programme_id,
811 'title': title,
812 'description': description,
813 'timestamp': timestamp,
814 'formats': formats,
815 'subtitles': subtitles,
816 }
a3bfddfa 817
9afa1770
S
818 playlist_title = self._html_search_regex(
819 r'<title>(.*?)(?:\s*-\s*BBC [^ ]+)?</title>', webpage, 'playlist title')
88ed52ae
S
820 playlist_description = self._og_search_description(webpage, default=None)
821
822 def extract_all(pattern):
823 return list(filter(None, map(
824 lambda s: self._parse_json(s, playlist_id, fatal=False),
825 re.findall(pattern, webpage))))
826
827 # Multiple video article (e.g.
828 # http://www.bbc.co.uk/blogs/adamcurtis/entries/3662a707-0af9-3149-963f-47bea720b460)
22d7368d 829 EMBED_URL = r'https?://(?:www\.)?bbc\.co\.uk/(?:[^/]+/)+%s(?:\b[^"]+)?' % self._ID_REGEX
88ed52ae
S
830 entries = []
831 for match in extract_all(r'new\s+SMP\(({.+?})\)'):
832 embed_url = match.get('playerSettings', {}).get('externalEmbedUrl')
833 if embed_url and re.match(EMBED_URL, embed_url):
834 entries.append(embed_url)
835 entries.extend(re.findall(
836 r'setPlaylist\("(%s)"\)' % EMBED_URL, webpage))
837 if entries:
838 return self.playlist_result(
839 [self.url_result(entry, 'BBCCoUk') for entry in entries],
840 playlist_id, playlist_title, playlist_description)
9afa1770
S
841
842 # Multiple video article (e.g. http://www.bbc.com/news/world-europe-32668511)
88ed52ae 843 medias = extract_all(r"data-media-meta='({[^']+})'")
9afa1770
S
844
845 if not medias:
846 # Single video article (e.g. http://www.bbc.com/news/video_and_audio/international)
a346b1ff
S
847 media_asset = self._search_regex(
848 r'mediaAssetPage\.init\(\s*({.+?}), "/',
849 webpage, 'media asset', default=None)
850 if media_asset:
851 media_asset_page = self._parse_json(media_asset, playlist_id, fatal=False)
852 medias = []
853 for video in media_asset_page.get('videos', {}).values():
854 medias.extend(video.values())
855
856 if not medias:
857 # Multiple video playlist with single `now playing` entry (e.g.
858 # http://www.bbc.com/news/video_and_audio/must_see/33767813)
859 vxp_playlist = self._parse_json(
9afa1770 860 self._search_regex(
a346b1ff
S
861 r'<script[^>]+class="vxp-playlist-data"[^>]+type="application/json"[^>]*>([^<]+)</script>',
862 webpage, 'playlist data'),
9afa1770 863 playlist_id)
a346b1ff
S
864 playlist_medias = []
865 for item in vxp_playlist:
866 media = item.get('media')
867 if not media:
868 continue
869 playlist_medias.append(media)
870 # Download single video if found media with asset id matching the video id from URL
871 if item.get('advert', {}).get('assetId') == playlist_id:
872 medias = [media]
873 break
874 # Fallback to the whole playlist
875 if not medias:
876 medias = playlist_medias
9afa1770
S
877
878 entries = []
879 for num, media_meta in enumerate(medias, start=1):
880 formats, subtitles = self._extract_from_media_meta(media_meta, playlist_id)
881 if not formats:
882 continue
10273d6e 883 self._sort_formats(formats)
884
9afa1770
S
885 video_id = media_meta.get('externalId')
886 if not video_id:
887 video_id = playlist_id if len(medias) == 1 else '%s-%s' % (playlist_id, num)
888
889 title = media_meta.get('caption')
890 if not title:
891 title = playlist_title if len(medias) == 1 else '%s - Video %s' % (playlist_title, num)
892
893 duration = int_or_none(media_meta.get('durationInSeconds')) or parse_duration(media_meta.get('duration'))
da92eeae 894
9afa1770
S
895 images = []
896 for image in media_meta.get('images', {}).values():
897 images.extend(image.values())
898 if 'image' in media_meta:
899 images.append(media_meta['image'])
900
901 thumbnails = [{
902 'url': image.get('href'),
903 'width': int_or_none(image.get('width')),
904 'height': int_or_none(image.get('height')),
905 } for image in images]
906
907 entries.append({
908 'id': video_id,
10273d6e 909 'title': title,
9afa1770 910 'thumbnails': thumbnails,
10273d6e 911 'duration': duration,
9afa1770 912 'timestamp': timestamp,
10273d6e 913 'formats': formats,
914 'subtitles': subtitles,
a3bfddfa 915 })
10273d6e 916
9afa1770 917 return self.playlist_result(entries, playlist_id, playlist_title, playlist_description)
a65402ef
YCH
918
919
920class BBCCoUkArticleIE(InfoExtractor):
921 _VALID_URL = 'http://www.bbc.co.uk/programmes/articles/(?P<id>[a-zA-Z0-9]+)'
922 IE_NAME = 'bbc.co.uk:article'
923 IE_DESC = 'BBC articles'
924
925 _TEST = {
926 'url': 'http://www.bbc.co.uk/programmes/articles/3jNQLTMrPlYGTBn0WV6M2MS/not-your-typical-role-model-ada-lovelace-the-19th-century-programmer',
927 'info_dict': {
928 'id': '3jNQLTMrPlYGTBn0WV6M2MS',
929 'title': 'Calculating Ada: The Countess of Computing - Not your typical role model: Ada Lovelace the 19th century programmer - BBC Four',
930 'description': 'Hannah Fry reveals some of her surprising discoveries about Ada Lovelace during filming.',
931 },
932 'playlist_count': 4,
933 'add_ie': ['BBCCoUk'],
934 }
935
936 def _real_extract(self, url):
937 playlist_id = self._match_id(url)
938
939 webpage = self._download_webpage(url, playlist_id)
940
941 title = self._og_search_title(webpage)
942 description = self._og_search_description(webpage).strip()
943
944 entries = [self.url_result(programme_url) for programme_url in re.findall(
945 r'<div[^>]+typeof="Clip"[^>]+resource="([^"]+)"', webpage)]
946
947 return self.playlist_result(entries, playlist_id, title, description)