]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/brightcove.py
Merge remote-tracking branch 'Tithen-Firion/master'
[yt-dlp.git] / youtube_dl / extractor / brightcove.py
CommitLineData
592882aa 1# encoding: utf-8
400e5810 2from __future__ import unicode_literals
592882aa 3
fbaaad49
JMF
4import re
5import json
cfe50f04 6import xml.etree.ElementTree
fbaaad49
JMF
7
8from .common import InfoExtractor
1cc79574 9from ..compat import (
7b0817e8 10 compat_parse_qs,
1cc79574
PH
11 compat_str,
12 compat_urllib_parse,
37aab278 13 compat_urllib_parse_urlparse,
1cc79574
PH
14 compat_urllib_request,
15 compat_urlparse,
16)
17from ..utils import (
5524b242 18 determine_ext,
592882aa 19 ExtractorError,
1cc79574
PH
20 find_xpath_attr,
21 fix_xml_ampersands,
ac6e4ca1 22 unescapeHTML,
1cc79574 23 unsmuggle_url,
cfe50f04 24)
fbaaad49 25
dd5bcdc4 26
fbaaad49 27class BrightcoveIE(InfoExtractor):
ec05fee4 28 _VALID_URL = r'(?:https?://.*brightcove\.com/(services|viewer).*?\?|brightcove:)(?P<query>.*)'
cfe50f04 29 _FEDERATED_URL_TEMPLATE = 'http://c.brightcove.com/services/viewer/htmlFederated?%s'
592882aa
JMF
30
31 _TESTS = [
32 {
4de1994b 33 # From http://www.8tv.cat/8aldia/videos/xavier-sala-i-martin-aquesta-tarda-a-8-al-dia/
400e5810 34 'url': 'http://c.brightcove.com/services/viewer/htmlFederated?playerID=1654948606001&flashID=myExperience&%40videoPlayer=2371591881001',
400e5810
PH
35 'md5': '5423e113865d26e40624dce2e4b45d95',
36 'note': 'Test Brightcove downloads and detection in GenericIE',
37 'info_dict': {
96bef88f
JMF
38 'id': '2371591881001',
39 'ext': 'mp4',
400e5810
PH
40 'title': 'Xavier Sala i Martín: “Un banc que no presta és un banc zombi que no serveix per a res”',
41 'uploader': '8TV',
42 'description': 'md5:a950cc4285c43e44d763d036710cd9cd',
592882aa
JMF
43 }
44 },
45 {
4de1994b 46 # From http://medianetwork.oracle.com/video/player/1785452137001
400e5810 47 'url': 'http://c.brightcove.com/services/viewer/htmlFederated?playerID=1217746023001&flashID=myPlayer&%40videoPlayer=1785452137001',
400e5810 48 'info_dict': {
96bef88f
JMF
49 'id': '1785452137001',
50 'ext': 'flv',
400e5810
PH
51 'title': 'JVMLS 2012: Arrays 2.0 - Opportunities and Challenges',
52 'description': 'John Rose speaks at the JVM Language Summit, August 1, 2012.',
53 'uploader': 'Oracle',
592882aa
JMF
54 },
55 },
fc4a0c2a
JMF
56 {
57 # From http://mashable.com/2013/10/26/thermoelectric-bracelet-lets-you-control-your-body-temperature/
400e5810
PH
58 'url': 'http://c.brightcove.com/services/viewer/federated_f9?&playerID=1265504713001&publisherID=AQ%7E%7E%2CAAABBzUwv1E%7E%2CxP-xFHVUstiMFlNYfvF4G9yFnNaqCw_9&videoID=2750934548001',
59 'info_dict': {
60 'id': '2750934548001',
61 'ext': 'mp4',
62 'title': 'This Bracelet Acts as a Personal Thermostat',
63 'description': 'md5:547b78c64f4112766ccf4e151c20b6a0',
64 'uploader': 'Mashable',
fc4a0c2a
JMF
65 },
66 },
77526143
JMF
67 {
68 # test that the default referer works
69 # from http://national.ballet.ca/interact/video/Lost_in_Motion_II/
400e5810
PH
70 'url': 'http://link.brightcove.com/services/player/bcpid756015033001?bckey=AQ~~,AAAApYJi_Ck~,GxhXCegT1Dp39ilhXuxMJxasUhVNZiil&bctid=2878862109001',
71 'info_dict': {
72 'id': '2878862109001',
73 'ext': 'mp4',
74 'title': 'Lost in Motion II',
75 'description': 'md5:363109c02998fee92ec02211bd8000df',
76 'uploader': 'National Ballet of Canada',
77526143 77 },
5524b242
JMF
78 },
79 {
80 # test flv videos served by akamaihd.net
81 # From http://www.redbull.com/en/bike/stories/1331655643987/replay-uci-dh-world-cup-2014-from-fort-william
82 'url': 'http://c.brightcove.com/services/viewer/htmlFederated?%40videoPlayer=ref%3ABC2996102916001&linkBaseURL=http%3A%2F%2Fwww.redbull.com%2Fen%2Fbike%2Fvideos%2F1331655630249%2Freplay-uci-fort-william-2014-dh&playerKey=AQ%7E%7E%2CAAAApYJ7UqE%7E%2Cxqr_zXk0I-zzNndy8NlHogrCb5QdyZRf&playerID=1398061561001#__youtubedl_smuggle=%7B%22Referer%22%3A+%22http%3A%2F%2Fwww.redbull.com%2Fen%2Fbike%2Fstories%2F1331655643987%2Freplay-uci-dh-world-cup-2014-from-fort-william%22%7D',
83 # The md5 checksum changes on each download
84 'info_dict': {
85 'id': '2996102916001',
86 'ext': 'flv',
87 'title': 'UCI MTB World Cup 2014: Fort William, UK - Downhill Finals',
88 'uploader': 'Red Bull TV',
89 'description': 'UCI MTB World Cup 2014: Fort William, UK - Downhill Finals',
90 },
91 },
bd4e40df
JMF
92 {
93 # playlist test
94 # from http://support.brightcove.com/en/video-cloud/docs/playlist-support-single-video-players
95 'url': 'http://c.brightcove.com/services/viewer/htmlFederated?playerID=3550052898001&playerKey=AQ%7E%7E%2CAAABmA9XpXk%7E%2C-Kp7jNgisre1fG5OdqpAFUTcs0lP_ZoL',
96 'info_dict': {
97 'title': 'Sealife',
98 },
99 'playlist_mincount': 7,
100 },
592882aa 101 ]
cfe50f04
JMF
102
103 @classmethod
104 def _build_brighcove_url(cls, object_str):
105 """
106 Build a Brightcove url from a xml string containing
107 <object class="BrightcoveExperience">{params}</object>
108 """
46e28a84
PH
109
110 # Fix up some stupid HTML, see https://github.com/rg3/youtube-dl/issues/1553
111 object_str = re.sub(r'(<param name="[^"]+" value="[^"]+")>',
112 lambda m: m.group(1) + '/>', object_str)
2d0efe70 113 # Fix up some stupid XML, see https://github.com/rg3/youtube-dl/issues/1608
400e5810 114 object_str = object_str.replace('<--', '<!--')
d6f714f3
JMF
115 # remove namespace to simplify extraction
116 object_str = re.sub(r'(<object[^>]*)(xmlns=".*?")', r'\1', object_str)
7b0817e8 117 object_str = fix_xml_ampersands(object_str)
46e28a84 118
0479c625 119 object_doc = xml.etree.ElementTree.fromstring(object_str.encode('utf-8'))
7b0817e8
PH
120
121 fv_el = find_xpath_attr(object_doc, './param', 'name', 'flashVars')
47917f24
JMF
122 if fv_el is not None:
123 flashvars = dict(
124 (k, v[0])
125 for k, v in compat_parse_qs(fv_el.attrib['value']).items())
126 else:
127 flashvars = {}
7b0817e8 128
36de0a0e 129 def find_param(name):
7b0817e8
PH
130 if name in flashvars:
131 return flashvars[name]
d214fdb8
JMF
132 node = find_xpath_attr(object_doc, './param', 'name', name)
133 if node is not None:
134 return node.attrib['value']
135 return None
7b0817e8
PH
136
137 params = {}
138
139 playerID = find_param('playerID')
140 if playerID is None:
141 raise ExtractorError('Cannot find player ID')
142 params['playerID'] = playerID
143
36de0a0e 144 playerKey = find_param('playerKey')
cfe50f04
JMF
145 # Not all pages define this value
146 if playerKey is not None:
d214fdb8 147 params['playerKey'] = playerKey
36de0a0e
JMF
148 # The three fields hold the id of the video
149 videoPlayer = find_param('@videoPlayer') or find_param('videoId') or find_param('videoID')
abb285fb 150 if videoPlayer is not None:
d214fdb8 151 params['@videoPlayer'] = videoPlayer
36de0a0e 152 linkBase = find_param('linkBaseURL')
dd5bcdc4 153 if linkBase is not None:
d214fdb8 154 params['linkBaseURL'] = linkBase
cfe50f04
JMF
155 data = compat_urllib_parse.urlencode(params)
156 return cls._FEDERATED_URL_TEMPLATE % data
fbaaad49 157
eeb165e6
JMF
158 @classmethod
159 def _extract_brightcove_url(cls, webpage):
99877772 160 """Try to extract the brightcove url from the webpage, returns None
eeb165e6
JMF
161 if it can't be found
162 """
99877772
PH
163 urls = cls._extract_brightcove_urls(webpage)
164 return urls[0] if urls else None
165
166 @classmethod
167 def _extract_brightcove_urls(cls, webpage):
168 """Return a list of all Brightcove URLs from the webpage """
117bec93 169
e1ab5000
PH
170 url_m = re.search(
171 r'<meta\s+property="og:video"\s+content="(https?://(?:secure|c)\.brightcove.com/[^"]+)"',
172 webpage)
117bec93 173 if url_m:
381640e3
JMF
174 url = unescapeHTML(url_m.group(1))
175 # Some sites don't add it, we can't download with this url, for example:
176 # http://www.ktvu.com/videos/news/raw-video-caltrain-releases-video-of-man-almost/vCTZdY/
e1ab5000 177 if 'playerKey' in url or 'videoId' in url:
381640e3 178 return [url]
117bec93 179
99877772 180 matches = re.findall(
7b0817e8
PH
181 r'''(?sx)<object
182 (?:
99877772 183 [^>]+?class=[\'"][^>]*?BrightcoveExperience.*?[\'"] |
7b0817e8
PH
184 [^>]*?>\s*<param\s+name="movie"\s+value="https?://[^/]*brightcove\.com/
185 ).+?</object>''',
186 webpage)
99877772 187 return [cls._build_brighcove_url(m) for m in matches]
eeb165e6 188
fbaaad49 189 def _real_extract(self, url):
79f82953
PH
190 url, smuggled_data = unsmuggle_url(url, {})
191
51040b72
JMF
192 # Change the 'videoId' and others field to '@videoPlayer'
193 url = re.sub(r'(?<=[?&])(videoI(d|D)|bctid)', '%40videoPlayer', url)
194 # Change bckey (used by bcove.me urls) to playerKey
195 url = re.sub(r'(?<=[?&])bckey', 'playerKey', url)
fbaaad49 196 mobj = re.match(self._VALID_URL, url)
6543f0dc
JMF
197 query_str = mobj.group('query')
198 query = compat_urlparse.parse_qs(query_str)
fbaaad49 199
6543f0dc
JMF
200 videoPlayer = query.get('@videoPlayer')
201 if videoPlayer:
79f82953
PH
202 # We set the original url as the default 'Referer' header
203 referer = smuggled_data.get('Referer', url)
204 return self._get_video_info(
205 videoPlayer[0], query_str, query, referer=referer)
68575900 206 elif 'playerKey' in query:
6543f0dc
JMF
207 player_key = query['playerKey']
208 return self._get_playlist_info(player_key[0])
68575900
PH
209 else:
210 raise ExtractorError(
211 'Cannot find playerKey= variable. Did you forget quotes in a shell invocation?',
212 expected=True)
abb285fb 213
77526143 214 def _get_video_info(self, video_id, query_str, query, referer=None):
dd5bcdc4
JMF
215 request_url = self._FEDERATED_URL_TEMPLATE % query_str
216 req = compat_urllib_request.Request(request_url)
217 linkBase = query.get('linkBaseURL')
218 if linkBase is not None:
77526143
JMF
219 referer = linkBase[0]
220 if referer is not None:
221 req.add_header('Referer', referer)
dd5bcdc4 222 webpage = self._download_webpage(req, video_id)
fbaaad49 223
a5ed3e57 224 error_msg = self._html_search_regex(
4d46c1c6 225 r"<h1>We're sorry.</h1>([\s\n]*<p>.*?</p>)+", webpage,
a5ed3e57
PH
226 'error message', default=None)
227 if error_msg is not None:
228 raise ExtractorError(
229 'brightcove said: %s' % error_msg, expected=True)
230
fbaaad49 231 self.report_extraction(video_id)
a013eba6 232 info = self._search_regex(r'var experienceJSON = ({.*});', webpage, 'json')
fbaaad49
JMF
233 info = json.loads(info)['data']
234 video_info = info['programmedContent']['videoPlayer']['mediaDTO']
7b0817e8 235 video_info['_youtubedl_adServerURL'] = info.get('adServerURL')
abb285fb
JMF
236
237 return self._extract_video_info(video_info)
238
239 def _get_playlist_info(self, player_key):
117bec93
PH
240 info_url = 'http://c.brightcove.com/services/json/experience/runtime/?command=get_programming_for_experience&playerKey=%s' % player_key
241 playlist_info = self._download_webpage(
242 info_url, player_key, 'Downloading playlist information')
abb285fb 243
59145479
PH
244 json_data = json.loads(playlist_info)
245 if 'videoList' not in json_data:
400e5810 246 raise ExtractorError('Empty playlist')
59145479 247 playlist_info = json_data['videoList']
abb285fb
JMF
248 videos = [self._extract_video_info(video_info) for video_info in playlist_info['mediaCollectionDTO']['videoDTOs']]
249
250 return self.playlist_result(videos, playlist_id=playlist_info['id'],
251 playlist_title=playlist_info['mediaCollectionDTO']['displayName'])
252
253 def _extract_video_info(self, video_info):
592882aa 254 info = {
eeb165e6 255 'id': compat_str(video_info['id']),
066f6a06 256 'title': video_info['displayName'].strip(),
592882aa
JMF
257 'description': video_info.get('shortDescription'),
258 'thumbnail': video_info.get('videoStillURL') or video_info.get('thumbnailURL'),
259 'uploader': video_info.get('publisherName'),
260 }
abb285fb 261
592882aa
JMF
262 renditions = video_info.get('renditions')
263 if renditions:
5524b242
JMF
264 formats = []
265 for rend in renditions:
266 url = rend['defaultURL']
b5af6fcd
NJ
267 if not url:
268 continue
233d37fb 269 ext = None
5524b242 270 if rend['remote']:
37aab278
NJ
271 url_comp = compat_urllib_parse_urlparse(url)
272 if url_comp.path.endswith('.m3u8'):
273 formats.extend(
274 self._extract_m3u8_formats(url, info['id'], 'mp4'))
275 continue
276 elif 'akamaihd.net' in url_comp.netloc:
277 # This type of renditions are served through
278 # akamaihd.net, but they don't use f4m manifests
279 url = url.replace('control/', '') + '?&v=3.3.0&fp=13&r=FEEFJ&g=RTSJIMBMPFPB'
280 ext = 'flv'
233d37fb 281 if ext is None:
5524b242 282 ext = determine_ext(url)
35eacd0d 283 size = rend.get('size')
5524b242
JMF
284 formats.append({
285 'url': url,
286 'ext': ext,
287 'height': rend.get('frameHeight'),
288 'width': rend.get('frameWidth'),
35eacd0d 289 'filesize': size if size != 0 else None,
5524b242 290 })
35eacd0d 291 self._sort_formats(formats)
5524b242 292 info['formats'] = formats
592882aa
JMF
293 elif video_info.get('FLVFullLengthURL') is not None:
294 info.update({
295 'url': video_info['FLVFullLengthURL'],
592882aa 296 })
7b0817e8
PH
297
298 if self._downloader.params.get('include_ads', False):
299 adServerURL = video_info.get('_youtubedl_adServerURL')
300 if adServerURL:
301 ad_info = {
302 '_type': 'url',
303 'url': adServerURL,
304 }
305 if 'url' in info:
306 return {
307 '_type': 'playlist',
308 'title': info['title'],
309 'entries': [ad_info, info],
310 }
311 else:
312 return ad_info
313
d614aa40 314 if 'url' not in info and not info.get('formats'):
400e5810 315 raise ExtractorError('Unable to extract video url for %s' % info['id'])
592882aa 316 return info