]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/brightcove.py
[nbc] add new extractor for csnne.com(#5432)
[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
6
7from .common import InfoExtractor
1cc79574 8from ..compat import (
36e6f62c 9 compat_etree_fromstring,
7b0817e8 10 compat_parse_qs,
1cc79574 11 compat_str,
37aab278 12 compat_urllib_parse_urlparse,
1cc79574 13 compat_urlparse,
e20d0c1e 14 compat_xml_parse_error,
d13bdc38 15 compat_HTTPError,
1cc79574
PH
16)
17from ..utils import (
5524b242 18 determine_ext,
592882aa 19 ExtractorError,
1cc79574
PH
20 find_xpath_attr,
21 fix_xml_ampersands,
a6624898 22 float_or_none,
fd91257c 23 js_to_json,
ed126900 24 int_or_none,
25 parse_iso8601,
fd91257c
S
26 unescapeHTML,
27 unsmuggle_url,
48254c3f 28 update_url_query,
cfe50f04 29)
fbaaad49 30
dd5bcdc4 31
4fcaa4f4 32class BrightcoveLegacyIE(InfoExtractor):
e721d857 33 IE_NAME = 'brightcove:legacy'
ec05fee4 34 _VALID_URL = r'(?:https?://.*brightcove\.com/(services|viewer).*?\?|brightcove:)(?P<query>.*)'
48254c3f 35 _FEDERATED_URL = 'http://c.brightcove.com/services/viewer/htmlFederated'
592882aa
JMF
36
37 _TESTS = [
38 {
4de1994b 39 # From http://www.8tv.cat/8aldia/videos/xavier-sala-i-martin-aquesta-tarda-a-8-al-dia/
400e5810 40 'url': 'http://c.brightcove.com/services/viewer/htmlFederated?playerID=1654948606001&flashID=myExperience&%40videoPlayer=2371591881001',
400e5810
PH
41 'md5': '5423e113865d26e40624dce2e4b45d95',
42 'note': 'Test Brightcove downloads and detection in GenericIE',
43 'info_dict': {
96bef88f
JMF
44 'id': '2371591881001',
45 'ext': 'mp4',
400e5810
PH
46 'title': 'Xavier Sala i Martín: “Un banc que no presta és un banc zombi que no serveix per a res”',
47 'uploader': '8TV',
48 'description': 'md5:a950cc4285c43e44d763d036710cd9cd',
592882aa
JMF
49 }
50 },
51 {
4de1994b 52 # From http://medianetwork.oracle.com/video/player/1785452137001
400e5810 53 'url': 'http://c.brightcove.com/services/viewer/htmlFederated?playerID=1217746023001&flashID=myPlayer&%40videoPlayer=1785452137001',
400e5810 54 'info_dict': {
96bef88f
JMF
55 'id': '1785452137001',
56 'ext': 'flv',
400e5810
PH
57 'title': 'JVMLS 2012: Arrays 2.0 - Opportunities and Challenges',
58 'description': 'John Rose speaks at the JVM Language Summit, August 1, 2012.',
59 'uploader': 'Oracle',
592882aa
JMF
60 },
61 },
fc4a0c2a
JMF
62 {
63 # From http://mashable.com/2013/10/26/thermoelectric-bracelet-lets-you-control-your-body-temperature/
400e5810
PH
64 'url': 'http://c.brightcove.com/services/viewer/federated_f9?&playerID=1265504713001&publisherID=AQ%7E%7E%2CAAABBzUwv1E%7E%2CxP-xFHVUstiMFlNYfvF4G9yFnNaqCw_9&videoID=2750934548001',
65 'info_dict': {
66 'id': '2750934548001',
67 'ext': 'mp4',
68 'title': 'This Bracelet Acts as a Personal Thermostat',
69 'description': 'md5:547b78c64f4112766ccf4e151c20b6a0',
70 'uploader': 'Mashable',
fc4a0c2a
JMF
71 },
72 },
77526143
JMF
73 {
74 # test that the default referer works
75 # from http://national.ballet.ca/interact/video/Lost_in_Motion_II/
400e5810
PH
76 'url': 'http://link.brightcove.com/services/player/bcpid756015033001?bckey=AQ~~,AAAApYJi_Ck~,GxhXCegT1Dp39ilhXuxMJxasUhVNZiil&bctid=2878862109001',
77 'info_dict': {
78 'id': '2878862109001',
79 'ext': 'mp4',
80 'title': 'Lost in Motion II',
81 'description': 'md5:363109c02998fee92ec02211bd8000df',
82 'uploader': 'National Ballet of Canada',
77526143 83 },
5524b242
JMF
84 },
85 {
86 # test flv videos served by akamaihd.net
87 # From http://www.redbull.com/en/bike/stories/1331655643987/replay-uci-dh-world-cup-2014-from-fort-william
88 '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',
89 # The md5 checksum changes on each download
90 'info_dict': {
91 'id': '2996102916001',
92 'ext': 'flv',
93 'title': 'UCI MTB World Cup 2014: Fort William, UK - Downhill Finals',
94 'uploader': 'Red Bull TV',
95 'description': 'UCI MTB World Cup 2014: Fort William, UK - Downhill Finals',
96 },
97 },
bd4e40df
JMF
98 {
99 # playlist test
100 # from http://support.brightcove.com/en/video-cloud/docs/playlist-support-single-video-players
101 'url': 'http://c.brightcove.com/services/viewer/htmlFederated?playerID=3550052898001&playerKey=AQ%7E%7E%2CAAABmA9XpXk%7E%2C-Kp7jNgisre1fG5OdqpAFUTcs0lP_ZoL',
102 'info_dict': {
103 'title': 'Sealife',
d47c26e1 104 'id': '3550319591001',
bd4e40df
JMF
105 },
106 'playlist_mincount': 7,
107 },
592882aa 108 ]
cfe50f04
JMF
109
110 @classmethod
111 def _build_brighcove_url(cls, object_str):
112 """
113 Build a Brightcove url from a xml string containing
114 <object class="BrightcoveExperience">{params}</object>
115 """
46e28a84
PH
116
117 # Fix up some stupid HTML, see https://github.com/rg3/youtube-dl/issues/1553
c1147c05 118 object_str = re.sub(r'(<param(?:\s+[a-zA-Z0-9_]+="[^"]*")*)>',
46e28a84 119 lambda m: m.group(1) + '/>', object_str)
2d0efe70 120 # Fix up some stupid XML, see https://github.com/rg3/youtube-dl/issues/1608
400e5810 121 object_str = object_str.replace('<--', '<!--')
d6f714f3
JMF
122 # remove namespace to simplify extraction
123 object_str = re.sub(r'(<object[^>]*)(xmlns=".*?")', r'\1', object_str)
7b0817e8 124 object_str = fix_xml_ampersands(object_str)
46e28a84 125
94c12557 126 try:
36e6f62c 127 object_doc = compat_etree_fromstring(object_str.encode('utf-8'))
e20d0c1e 128 except compat_xml_parse_error:
94c12557 129 return
7b0817e8
PH
130
131 fv_el = find_xpath_attr(object_doc, './param', 'name', 'flashVars')
47917f24
JMF
132 if fv_el is not None:
133 flashvars = dict(
134 (k, v[0])
135 for k, v in compat_parse_qs(fv_el.attrib['value']).items())
136 else:
137 flashvars = {}
7b0817e8 138
5964b598
YCH
139 data_url = object_doc.attrib.get('data', '')
140 data_url_params = compat_parse_qs(compat_urllib_parse_urlparse(data_url).query)
141
36de0a0e 142 def find_param(name):
7b0817e8
PH
143 if name in flashvars:
144 return flashvars[name]
d214fdb8
JMF
145 node = find_xpath_attr(object_doc, './param', 'name', name)
146 if node is not None:
147 return node.attrib['value']
5964b598 148 return data_url_params.get(name)
7b0817e8
PH
149
150 params = {}
151
152 playerID = find_param('playerID')
153 if playerID is None:
154 raise ExtractorError('Cannot find player ID')
155 params['playerID'] = playerID
156
36de0a0e 157 playerKey = find_param('playerKey')
cfe50f04
JMF
158 # Not all pages define this value
159 if playerKey is not None:
d214fdb8 160 params['playerKey'] = playerKey
48254c3f 161 # These fields hold the id of the video
2cab4870 162 videoPlayer = find_param('@videoPlayer') or find_param('videoId') or find_param('videoID') or find_param('@videoList')
abb285fb 163 if videoPlayer is not None:
d214fdb8 164 params['@videoPlayer'] = videoPlayer
36de0a0e 165 linkBase = find_param('linkBaseURL')
dd5bcdc4 166 if linkBase is not None:
d214fdb8 167 params['linkBaseURL'] = linkBase
af9cdee9
S
168 return cls._make_brightcove_url(params)
169
170 @classmethod
171 def _build_brighcove_url_from_js(cls, object_js):
172 # The layout of JS is as follows:
173 # customBC.createVideo = function (width, height, playerID, playerKey, videoPlayer, VideoRandomID) {
174 # // build Brightcove <object /> XML
175 # }
176 m = re.search(
177 r'''(?x)customBC.\createVideo\(
178 .*? # skipping width and height
179 ["\'](?P<playerID>\d+)["\']\s*,\s* # playerID
180 ["\'](?P<playerKey>AQ[^"\']{48})[^"\']*["\']\s*,\s* # playerKey begins with AQ and is 50 characters
181 # in length, however it's appended to itself
182 # in places, so truncate
183 ["\'](?P<videoID>\d+)["\'] # @videoPlayer
184 ''', object_js)
185 if m:
186 return cls._make_brightcove_url(m.groupdict())
187
188 @classmethod
189 def _make_brightcove_url(cls, params):
48254c3f 190 return update_url_query(cls._FEDERATED_URL, params)
fbaaad49 191
eeb165e6
JMF
192 @classmethod
193 def _extract_brightcove_url(cls, webpage):
99877772 194 """Try to extract the brightcove url from the webpage, returns None
eeb165e6
JMF
195 if it can't be found
196 """
99877772
PH
197 urls = cls._extract_brightcove_urls(webpage)
198 return urls[0] if urls else None
199
200 @classmethod
201 def _extract_brightcove_urls(cls, webpage):
202 """Return a list of all Brightcove URLs from the webpage """
117bec93 203
e1ab5000 204 url_m = re.search(
b26733ba 205 r'<meta\s+property=[\'"]og:video[\'"]\s+content=[\'"](https?://(?:secure|c)\.brightcove.com/[^\'"]+)[\'"]',
e1ab5000 206 webpage)
117bec93 207 if url_m:
381640e3
JMF
208 url = unescapeHTML(url_m.group(1))
209 # Some sites don't add it, we can't download with this url, for example:
210 # http://www.ktvu.com/videos/news/raw-video-caltrain-releases-video-of-man-almost/vCTZdY/
e1ab5000 211 if 'playerKey' in url or 'videoId' in url:
381640e3 212 return [url]
117bec93 213
99877772 214 matches = re.findall(
7b0817e8
PH
215 r'''(?sx)<object
216 (?:
99877772 217 [^>]+?class=[\'"][^>]*?BrightcoveExperience.*?[\'"] |
7b0817e8 218 [^>]*?>\s*<param\s+name="movie"\s+value="https?://[^/]*brightcove\.com/
476e1095 219 ).+?>\s*</object>''',
7b0817e8 220 webpage)
b4e1576a 221 if matches:
222 return list(filter(None, [cls._build_brighcove_url(m) for m in matches]))
223
af9cdee9
S
224 return list(filter(None, [
225 cls._build_brighcove_url_from_js(custom_bc)
226 for custom_bc in re.findall(r'(customBC\.createVideo\(.+?\);)', webpage)]))
eeb165e6 227
fbaaad49 228 def _real_extract(self, url):
79f82953
PH
229 url, smuggled_data = unsmuggle_url(url, {})
230
51040b72
JMF
231 # Change the 'videoId' and others field to '@videoPlayer'
232 url = re.sub(r'(?<=[?&])(videoI(d|D)|bctid)', '%40videoPlayer', url)
233 # Change bckey (used by bcove.me urls) to playerKey
234 url = re.sub(r'(?<=[?&])bckey', 'playerKey', url)
fbaaad49 235 mobj = re.match(self._VALID_URL, url)
6543f0dc
JMF
236 query_str = mobj.group('query')
237 query = compat_urlparse.parse_qs(query_str)
fbaaad49 238
6543f0dc
JMF
239 videoPlayer = query.get('@videoPlayer')
240 if videoPlayer:
79f82953
PH
241 # We set the original url as the default 'Referer' header
242 referer = smuggled_data.get('Referer', url)
243 return self._get_video_info(
48254c3f 244 videoPlayer[0], query, referer=referer)
68575900 245 elif 'playerKey' in query:
6543f0dc
JMF
246 player_key = query['playerKey']
247 return self._get_playlist_info(player_key[0])
68575900
PH
248 else:
249 raise ExtractorError(
250 'Cannot find playerKey= variable. Did you forget quotes in a shell invocation?',
251 expected=True)
abb285fb 252
48254c3f 253 def _get_video_info(self, video_id, query, referer=None):
254 headers = {}
dd5bcdc4
JMF
255 linkBase = query.get('linkBaseURL')
256 if linkBase is not None:
77526143
JMF
257 referer = linkBase[0]
258 if referer is not None:
48254c3f 259 headers['Referer'] = referer
260 webpage = self._download_webpage(self._FEDERATED_URL, video_id, headers=headers, query=query)
fbaaad49 261
a5ed3e57 262 error_msg = self._html_search_regex(
4d46c1c6 263 r"<h1>We're sorry.</h1>([\s\n]*<p>.*?</p>)+", webpage,
a5ed3e57
PH
264 'error message', default=None)
265 if error_msg is not None:
266 raise ExtractorError(
267 'brightcove said: %s' % error_msg, expected=True)
268
fbaaad49 269 self.report_extraction(video_id)
a013eba6 270 info = self._search_regex(r'var experienceJSON = ({.*});', webpage, 'json')
fbaaad49
JMF
271 info = json.loads(info)['data']
272 video_info = info['programmedContent']['videoPlayer']['mediaDTO']
7b0817e8 273 video_info['_youtubedl_adServerURL'] = info.get('adServerURL')
abb285fb
JMF
274
275 return self._extract_video_info(video_info)
276
277 def _get_playlist_info(self, player_key):
117bec93
PH
278 info_url = 'http://c.brightcove.com/services/json/experience/runtime/?command=get_programming_for_experience&playerKey=%s' % player_key
279 playlist_info = self._download_webpage(
280 info_url, player_key, 'Downloading playlist information')
abb285fb 281
59145479
PH
282 json_data = json.loads(playlist_info)
283 if 'videoList' not in json_data:
400e5810 284 raise ExtractorError('Empty playlist')
59145479 285 playlist_info = json_data['videoList']
abb285fb
JMF
286 videos = [self._extract_video_info(video_info) for video_info in playlist_info['mediaCollectionDTO']['videoDTOs']]
287
d47c26e1 288 return self.playlist_result(videos, playlist_id='%s' % playlist_info['id'],
abb285fb
JMF
289 playlist_title=playlist_info['mediaCollectionDTO']['displayName'])
290
291 def _extract_video_info(self, video_info):
592882aa 292 info = {
eeb165e6 293 'id': compat_str(video_info['id']),
066f6a06 294 'title': video_info['displayName'].strip(),
592882aa
JMF
295 'description': video_info.get('shortDescription'),
296 'thumbnail': video_info.get('videoStillURL') or video_info.get('thumbnailURL'),
297 'uploader': video_info.get('publisherName'),
298 }
abb285fb 299
d6c340ca 300 renditions = video_info.get('renditions', []) + video_info.get('IOSRenditions', [])
592882aa 301 if renditions:
5524b242
JMF
302 formats = []
303 for rend in renditions:
304 url = rend['defaultURL']
b5af6fcd
NJ
305 if not url:
306 continue
233d37fb 307 ext = None
5524b242 308 if rend['remote']:
37aab278
NJ
309 url_comp = compat_urllib_parse_urlparse(url)
310 if url_comp.path.endswith('.m3u8'):
311 formats.extend(
312 self._extract_m3u8_formats(url, info['id'], 'mp4'))
313 continue
314 elif 'akamaihd.net' in url_comp.netloc:
315 # This type of renditions are served through
316 # akamaihd.net, but they don't use f4m manifests
317 url = url.replace('control/', '') + '?&v=3.3.0&fp=13&r=FEEFJ&g=RTSJIMBMPFPB'
318 ext = 'flv'
233d37fb 319 if ext is None:
5524b242 320 ext = determine_ext(url)
35eacd0d 321 size = rend.get('size')
d6c340ca 322 a_format = {
5524b242
JMF
323 'url': url,
324 'ext': ext,
325 'height': rend.get('frameHeight'),
326 'width': rend.get('frameWidth'),
35eacd0d 327 'filesize': size if size != 0 else None,
d6c340ca
YCH
328 }
329
330 # m3u8 manifests with remote == false are media playlists
331 # Not calling _extract_m3u8_formats here to save network traffic
332 if ext == 'm3u8':
333 a_format.update({
334 'ext': 'mp4',
335 'protocol': 'm3u8',
336 })
337
338 formats.append(a_format)
35eacd0d 339 self._sort_formats(formats)
5524b242 340 info['formats'] = formats
592882aa
JMF
341 elif video_info.get('FLVFullLengthURL') is not None:
342 info.update({
343 'url': video_info['FLVFullLengthURL'],
592882aa 344 })
7b0817e8
PH
345
346 if self._downloader.params.get('include_ads', False):
347 adServerURL = video_info.get('_youtubedl_adServerURL')
348 if adServerURL:
349 ad_info = {
350 '_type': 'url',
351 'url': adServerURL,
352 }
353 if 'url' in info:
354 return {
355 '_type': 'playlist',
356 'title': info['title'],
357 'entries': [ad_info, info],
358 }
359 else:
360 return ad_info
361
d614aa40 362 if 'url' not in info and not info.get('formats'):
400e5810 363 raise ExtractorError('Unable to extract video url for %s' % info['id'])
592882aa 364 return info
ed126900 365
366
5c17f0a6 367class BrightcoveNewIE(InfoExtractor):
e721d857 368 IE_NAME = 'brightcove:new'
8ac73bdb 369 _VALID_URL = r'https?://players\.brightcove\.net/(?P<account_id>\d+)/(?P<player_id>[^/]+)_(?P<embed>[^/]+)/index\.html\?.*videoId=(?P<video_id>\d+|ref:[^&]+)'
cb33d389 370 _TESTS = [{
ed126900 371 'url': 'http://players.brightcove.net/929656772001/e41d32dc-ec74-459e-a845-6c69f7b724ea_default/index.html?videoId=4463358922001',
c01e1a96 372 'md5': 'c8100925723840d4b0d243f7025703be',
ed126900 373 'info_dict': {
374 'id': '4463358922001',
c01e1a96 375 'ext': 'mp4',
ed126900 376 'title': 'Meet the man behind Popcorn Time',
c01e1a96 377 'description': 'md5:eac376a4fe366edc70279bfb681aea16',
cb33d389 378 'duration': 165.768,
c01e1a96 379 'timestamp': 1441391203,
380 'upload_date': '20150904',
c01e1a96 381 'uploader_id': '929656772001',
cb33d389
S
382 'formats': 'mincount:22',
383 },
384 }, {
385 # with rtmp streams
386 'url': 'http://players.brightcove.net/4036320279001/5d112ed9-283f-485f-a7f9-33f42e8bc042_default/index.html?videoId=4279049078001',
387 'info_dict': {
388 'id': '4279049078001',
389 'ext': 'mp4',
390 'title': 'Titansgrave: Chapter 0',
391 'description': 'Titansgrave: Chapter 0',
392 'duration': 1242.058,
393 'timestamp': 1433556729,
394 'upload_date': '20150606',
395 'uploader_id': '4036320279001',
396 'formats': 'mincount:41',
397 },
398 'params': {
399 'skip_download': True,
ed126900 400 }
4f29fa99
S
401 }, {
402 # ref: prefixed video id
403 'url': 'http://players.brightcove.net/3910869709001/21519b5c-4b3b-4363-accb-bdc8f358f823_default/index.html?videoId=ref:7069442',
404 'only_matching': True,
8ac73bdb 405 }, {
406 # non numeric ref: prefixed video id
407 'url': 'http://players.brightcove.net/710858724001/default_default/index.html?videoId=ref:event-stream-356',
408 'only_matching': True,
cb33d389 409 }]
ed126900 410
7234d1d9
S
411 @staticmethod
412 def _extract_url(webpage):
413 urls = BrightcoveNewIE._extract_urls(webpage)
414 return urls[0] if urls else None
415
24af8529
S
416 @staticmethod
417 def _extract_urls(webpage):
536f819e
S
418 # Reference:
419 # 1. http://docs.brightcove.com/en/video-cloud/brightcove-player/guides/publish-video.html#setvideoiniframe
f81ccbb3 420 # 2. http://docs.brightcove.com/en/video-cloud/brightcove-player/guides/publish-video.html#setvideousingjavascript
536f819e 421 # 3. http://docs.brightcove.com/en/video-cloud/brightcove-player/guides/embed-in-page.html
5b72fda1 422 # 4. https://support.brightcove.com/en/video-cloud/docs/dynamically-assigning-videos-player
536f819e
S
423
424 entries = []
425
426 # Look for iframe embeds [1]
427 for _, url in re.findall(
354dbbd8 428 r'<iframe[^>]+src=(["\'])((?:https?:)?//players\.brightcove\.net/\d+/[^/]+/index\.html.+?)\1', webpage):
429 entries.append(url if url.startswith('http') else 'http:' + url)
d8a1caf0 430
536f819e 431 # Look for embed_in_page embeds [2]
536f819e 432 for video_id, account_id, player_id, embed in re.findall(
d8a1caf0
S
433 # According to examples from [3] it's unclear whether video id
434 # may be optional and what to do when it is
5b72fda1 435 # According to [4] data-video-id may be prefixed with ref:
536f819e
S
436 r'''(?sx)
437 <video[^>]+
64d4f31d 438 data-video-id=["\'](\d+|ref:[^"\']+)["\'][^>]*>.*?
536f819e
S
439 </video>.*?
440 <script[^>]+
441 src=["\'](?:https?:)?//players\.brightcove\.net/
d13bdc38 442 (\d+)/([\da-f-]+)_([^/]+)/index(?:\.min)?\.js
536f819e 443 ''', webpage):
24af8529 444 entries.append(
536f819e 445 'http://players.brightcove.net/%s/%s_%s/index.html?videoId=%s'
24af8529 446 % (account_id, player_id, embed, video_id))
d8a1caf0 447
536f819e 448 return entries
ed126900 449
450 def _real_extract(self, url):
9550ca50 451 account_id, player_id, embed, video_id = re.match(self._VALID_URL, url).groups()
ed126900 452
a6624898
S
453 webpage = self._download_webpage(
454 'http://players.brightcove.net/%s/%s_%s/index.min.js'
455 % (account_id, player_id, embed), video_id)
ed126900 456
a6624898
S
457 policy_key = None
458
459 catalog = self._search_regex(
460 r'catalog\(({.+?})\);', webpage, 'catalog', default=None)
461 if catalog:
462 catalog = self._parse_json(
463 js_to_json(catalog), video_id, fatal=False)
464 if catalog:
465 policy_key = catalog.get('policyKey')
466
467 if not policy_key:
468 policy_key = self._search_regex(
469 r'policyKey\s*:\s*(["\'])(?P<pk>.+?)\1',
470 webpage, 'policy key', group='pk')
ed126900 471
48254c3f 472 api_url = 'https://edge.api.brightcove.com/playback/v1/accounts/%s/videos/%s' % (account_id, video_id)
d13bdc38 473 try:
48254c3f 474 json_data = self._download_json(api_url, video_id, headers={
475 'Accept': 'application/json;pk=%s' % policy_key
476 })
d13bdc38 477 except ExtractorError as e:
478 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
479 json_data = self._parse_json(e.cause.read().decode(), video_id)
480 raise ExtractorError(json_data[0]['message'], expected=True)
481 raise
ed126900 482
483 title = json_data['name']
ed126900 484
485 formats = []
a6624898 486 for source in json_data.get('sources', []):
975b9c9a 487 container = source.get('container')
ed126900 488 source_type = source.get('type')
a6624898 489 src = source.get('src')
975b9c9a 490 if source_type == 'application/x-mpegURL' or container == 'M2TS':
a6624898
S
491 if not src:
492 continue
7e5edcfd 493 formats.extend(self._extract_m3u8_formats(
48254c3f 494 src, video_id, 'mp4', m3u8_id='hls', fatal=False))
89807d6a 495 elif source_type == 'application/dash+xml':
496 if not src:
497 continue
498 formats.extend(self._extract_mpd_formats(src, video_id, 'dash', fatal=False))
ed126900 499 else:
a6624898
S
500 streaming_src = source.get('streaming_src')
501 stream_name, app_name = source.get('stream_name'), source.get('app_name')
502 if not src and not streaming_src and (not stream_name or not app_name):
503 continue
504 tbr = float_or_none(source.get('avg_bitrate'), 1000)
505 height = int_or_none(source.get('height'))
89807d6a 506 width = int_or_none(source.get('width'))
a6624898
S
507 f = {
508 'tbr': tbr,
a6624898 509 'filesize': int_or_none(source.get('size')),
975b9c9a 510 'container': container,
89807d6a 511 'ext': container.lower(),
a6624898 512 }
89807d6a 513 if width == 0 and height == 0:
514 f.update({
515 'vcodec': 'none',
516 })
517 else:
518 f.update({
519 'width': width,
520 'height': height,
521 'vcodec': source.get('codec'),
522 })
ed126900 523
a6624898
S
524 def build_format_id(kind):
525 format_id = kind
526 if tbr:
527 format_id += '-%dk' % int(tbr)
528 if height:
529 format_id += '-%dp' % height
530 return format_id
531
532 if src or streaming_src:
533 f.update({
534 'url': src or streaming_src,
535 'format_id': build_format_id('http' if src else 'http-streaming'),
536 'preference': 2 if src else 1,
537 })
538 else:
539 f.update({
540 'url': app_name,
541 'play_path': stream_name,
542 'format_id': build_format_id('rtmp'),
543 })
544 formats.append(f)
ed126900 545 self._sort_formats(formats)
546
a6624898
S
547 description = json_data.get('description')
548 thumbnail = json_data.get('thumbnail')
549 timestamp = parse_iso8601(json_data.get('published_at'))
550 duration = float_or_none(json_data.get('duration'), 1000)
551 tags = json_data.get('tags', [])
552
ed126900 553 return {
554 'id': video_id,
555 'title': title,
556 'description': description,
557 'thumbnail': thumbnail,
ed126900 558 'duration': duration,
a6624898 559 'timestamp': timestamp,
c01e1a96 560 'uploader_id': account_id,
a6624898
S
561 'formats': formats,
562 'tags': tags,
ed126900 563 }