3 from .common
import InfoExtractor
9 class BostonGlobeIE(InfoExtractor
):
10 _VALID_URL
= r
'(?i)https?://(?:www\.)?bostonglobe\.com/.*/(?P<id>[^/]+)/\w+(?:\.html)?'
13 'url': 'http://www.bostonglobe.com/metro/2017/02/11/tree-finally-succumbs-disease-leaving-hole-neighborhood/h1b4lviqzMTIn9sVy8F3gP/story.html',
14 'md5': '0a62181079c85c2d2b618c9a738aedaf',
16 'title': 'A tree finally succumbs to disease, leaving a hole in a neighborhood',
17 'id': '5320421710001',
19 'description': 'It arrived as a sapling when the Back Bay was in its infancy, a spindly American elm tamped down into a square of dirt cut into the brick sidewalk of 1880s Marlborough Street, no higher than the first bay window of the new brownstone behind it.',
20 'timestamp': 1486877593,
21 'upload_date': '20170212',
22 'uploader_id': '245991542',
26 # Embedded youtube video; we hand it off to the Generic extractor.
27 'url': 'https://www.bostonglobe.com/lifestyle/names/2017/02/17/does-ben-affleck-play-matt-damon-favorite-version-batman/ruqkc9VxKBYmh5txn1XhSI/story.html',
28 'md5': '582b40327089d5c0c949b3c54b13c24b',
30 'title': "Who Is Matt Damon's Favorite Batman?",
33 'upload_date': '20170217',
34 'description': 'md5:3b3dccb9375867e0b4d527ed87d307cb',
35 'uploader': 'The Late Late Show with James Corden',
36 'uploader_id': 'TheLateLateShow',
38 'expected_warnings': ['404'],
42 def _real_extract(self
, url
):
43 page_id
= self
._match
_id
(url
)
44 webpage
= self
._download
_webpage
(url
, page_id
)
46 page_title
= self
._og
_search
_title
(webpage
, default
=None)
48 # <video data-brightcove-video-id="5320421710001" data-account="245991542" data-player="SJWAiyYWg" data-embed="default" class="video-js" controls itemscope itemtype="http://schema.org/VideoObject">
50 for video
in re
.findall(r
'(?i)(<video[^>]+>)', webpage
):
51 attrs
= extract_attributes(video
)
53 video_id
= attrs
.get('data-brightcove-video-id')
54 account_id
= attrs
.get('data-account')
55 player_id
= attrs
.get('data-player')
56 embed
= attrs
.get('data-embed')
58 if video_id
and account_id
and player_id
and embed
:
60 f
'http://players.brightcove.net/{account_id}/{player_id}_{embed}/index.html?videoId={video_id}')
63 return self
.url_result(url
, 'Generic')
64 elif len(entries
) == 1:
65 return self
.url_result(entries
[0], 'BrightcoveNew')
67 return self
.playlist_from_matches(entries
, page_id
, page_title
, ie
='BrightcoveNew')