]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/kaltura.py
[extractors] Use new framework for existing embeds (#4307)
[yt-dlp.git] / yt_dlp / extractor / kaltura.py
CommitLineData
01b06aed 1import base64
5747d4f4
M
2import json
3import re
0d97ef43
NJ
4
5from .common import InfoExtractor
01b06aed 6from ..compat import (
01b06aed 7 compat_urlparse,
fac7e792 8 compat_parse_qs,
01b06aed 9)
0d97ef43 10from ..utils import (
bdceea7a 11 clean_html,
0d97ef43 12 ExtractorError,
e0ddbd02 13 format_field,
0d97ef43 14 int_or_none,
01b06aed 15 unsmuggle_url,
81953d1a 16 smuggle_url,
5747d4f4 17 traverse_obj,
0d97ef43
NJ
18)
19
20
21class KalturaIE(InfoExtractor):
22 _VALID_URL = r'''(?x)
ee3ec091 23 (?:
fac7e792 24 kaltura:(?P<partner_id>\d+):(?P<id>[0-9a-z_]+)|
ee3ec091 25 https?://
ff24261b 26 (:?(?:www|cdnapi(?:sec)?)\.)?kaltura\.com(?::\d+)?/
ee3ec091
S
27 (?:
28 (?:
29 # flash player
37084f66 30 index\.php/(?:kwidget|extwidget/preview)|
b184f944 31 # html5 player
fac7e792 32 html5/html5lib/[^/]+/mwEmbedFrame\.php
ae6a8021 33 )
fac7e792 34 )(?:/(?P<path>[^?]+))?(?:\?(?P<query>.*))?
ee3ec091
S
35 )
36 '''
81953d1a 37 _SERVICE_URL = 'http://cdnapi.kaltura.com'
5747d4f4 38 _SERVICE_BASE = '/api_v3/service/multirequest'
92d4cfa3
S
39 # See https://github.com/kaltura/server/blob/master/plugins/content/caption/base/lib/model/enums/CaptionType.php
40 _CAPTION_TYPES = {
41 1: 'srt',
42 2: 'ttml',
43 3: 'vtt',
44 }
0d97ef43
NJ
45 _TESTS = [
46 {
47 'url': 'kaltura:269692:1_1jc2y3e4',
48 'md5': '3adcbdb3dcc02d647539e53f284ba171',
49 'info_dict': {
50 'id': '1_1jc2y3e4',
51 'ext': 'mp4',
bb4b8c57 52 'title': 'Straight from the Heart',
0d97ef43
NJ
53 'upload_date': '20131219',
54 'uploader_id': 'mlundberg@wolfgangsvault.com',
55 'description': 'The Allman Brothers Band, 12/16/1981',
56 'thumbnail': 're:^https?://.*/thumbnail/.*',
57 'timestamp': int,
58 },
59 },
60 {
61 'url': 'http://www.kaltura.com/index.php/kwidget/cache_st/1300318621/wid/_269692/uiconf_id/3873291/entry_id/1_1jc2y3e4',
62 'only_matching': True,
63 },
bd3749ed
S
64 {
65 'url': 'https://cdnapisec.kaltura.com/index.php/kwidget/wid/_557781/uiconf_id/22845202/entry_id/1_plr1syf3',
66 'only_matching': True,
67 },
ef49b590 68 {
69 'url': 'https://cdnapisec.kaltura.com/html5/html5lib/v2.30.2/mwEmbedFrame.php/p/1337/uiconf_id/20540612/entry_id/1_sf5ovm7u?wid=_243342',
70 'only_matching': True,
1094074c
RA
71 },
72 {
73 # video with subtitles
74 'url': 'kaltura:111032:1_cw786r8q',
75 'only_matching': True,
2c6acdfd
S
76 },
77 {
78 # video with ttml subtitles (no fileExt)
79 'url': 'kaltura:1926081:0_l5ye1133',
80 'info_dict': {
81 'id': '0_l5ye1133',
82 'ext': 'mp4',
83 'title': 'What Can You Do With Python?',
84 'upload_date': '20160221',
85 'uploader_id': 'stork',
86 'thumbnail': 're:^https?://.*/thumbnail/.*',
87 'timestamp': int,
88 'subtitles': {
89 'en': [{
90 'ext': 'ttml',
91 }],
92 },
93 },
a01825a5 94 'skip': 'Gone. Maybe https://www.safaribooksonline.com/library/tutorials/introduction-to-python-anon/3469/',
2c6acdfd
S
95 'params': {
96 'skip_download': True,
97 },
37084f66
RA
98 },
99 {
100 'url': 'https://www.kaltura.com/index.php/extwidget/preview/partner_id/1770401/uiconf_id/37307382/entry_id/0_58u8kme7/embed/iframe?&flashvars[streamerType]=auto',
101 'only_matching': True,
ff24261b
S
102 },
103 {
104 'url': 'https://www.kaltura.com:443/index.php/extwidget/preview/partner_id/1770401/uiconf_id/37307382/entry_id/0_58u8kme7/embed/iframe?&flashvars[streamerType]=auto',
105 'only_matching': True,
799756a3
S
106 },
107 {
108 # unavailable source format
109 'url': 'kaltura:513551:1_66x4rg7o',
110 'only_matching': True,
ef49b590 111 }
0d97ef43
NJ
112 ]
113
bfd973ec 114 @classmethod
115 def _extract_embed_urls(cls, url, webpage):
78280352 116 # Embed codes: https://knowledge.kaltura.com/embedding-kaltura-media-players-your-site
562de77f 117 finditer = (
41d1cca3 118 list(re.finditer(
9ea5c04c
S
119 r"""(?xs)
120 kWidget\.(?:thumb)?[Ee]mbed\(
121 \{.*?
78280352
S
122 (?P<q1>['"])wid(?P=q1)\s*:\s*
123 (?P<q2>['"])_?(?P<partner_id>(?:(?!(?P=q2)).)+)(?P=q2),.*?
124 (?P<q3>['"])entry_?[Ii]d(?P=q3)\s*:\s*
125 (?P<q4>['"])(?P<id>(?:(?!(?P=q4)).)+)(?P=q4)(?:,|\s*\})
41d1cca3 126 """, webpage))
127 or list(re.finditer(
9ea5c04c 128 r'''(?xs)
78280352 129 (?P<q1>["'])
ff24261b 130 (?:https?:)?//cdnapi(?:sec)?\.kaltura\.com(?::\d+)?/(?:(?!(?P=q1)).)*\b(?:p|partner_id)/(?P<partner_id>\d+)(?:(?!(?P=q1)).)*
9ea5c04c
S
131 (?P=q1).*?
132 (?:
69d69da9
S
133 (?:
134 entry_?[Ii]d|
135 (?P<q2>["'])entry_?[Ii]d(?P=q2)
136 )\s*:\s*|
c2f2f8b1 137 \[\s*(?P<q2_1>["'])entry_?[Ii]d(?P=q2_1)\s*\]\s*=\s*
69d69da9 138 )
78280352 139 (?P<q3>["'])(?P<id>(?:(?!(?P=q3)).)+)(?P=q3)
41d1cca3 140 ''', webpage))
141 or list(re.finditer(
a01825a5 142 r'''(?xs)
41d1cca3 143 <(?:iframe[^>]+src|meta[^>]+\bcontent)=(?P<q1>["'])\s*
c21692fa 144 (?:https?:)?//(?:(?:www|cdnapi(?:sec)?)\.)?kaltura\.com/(?:(?!(?P=q1)).)*\b(?:p|partner_id)/(?P<partner_id>\d+)
a01825a5 145 (?:(?!(?P=q1)).)*
e30991f9 146 [?&;]entry_id=(?P<id>(?:(?!(?P=q1))[^&])+)
c21692fa 147 (?:(?!(?P=q1)).)*
a01825a5 148 (?P=q1)
41d1cca3 149 ''', webpage))
a01825a5 150 )
562de77f
S
151 urls = []
152 for mobj in finditer:
81953d1a 153 embed_info = mobj.groupdict()
5ca34598 154 for k, v in embed_info.items():
1907f06e
S
155 if v:
156 embed_info[k] = v.strip()
bfd973ec 157 embed_url = 'kaltura:%(partner_id)s:%(id)s' % embed_info
d9163ae3 158 escaped_pid = re.escape(embed_info['partner_id'])
07b50f61
S
159 service_mobj = re.search(
160 r'<script[^>]+src=(["\'])(?P<id>(?:https?:)?//(?:(?!\1).)+)/p/%s/sp/%s00/embedIframeJs' % (escaped_pid, escaped_pid),
81953d1a 161 webpage)
07b50f61 162 if service_mobj:
bfd973ec 163 embed_url = smuggle_url(embed_url, {'service_url': service_mobj.group('id')})
164 urls.append(embed_url)
562de77f 165 return urls
9ea5c04c 166
d9163ae3 167 def _kaltura_api_call(self, video_id, actions, service_url=None, *args, **kwargs):
0d97ef43 168 params = actions[0]
5747d4f4 169 params.update({i: a for i, a in enumerate(actions[1:], start=1)})
0d97ef43 170
81953d1a 171 data = self._download_json(
d9163ae3 172 (service_url or self._SERVICE_URL) + self._SERVICE_BASE,
5747d4f4
M
173 video_id, data=json.dumps(params).encode('utf-8'),
174 headers={
175 'Content-Type': 'application/json',
176 'Accept-Encoding': 'gzip, deflate, br',
177 }, *args, **kwargs)
178
179 for idx, status in enumerate(data):
180 if not isinstance(status, dict):
181 continue
182 if status.get('objectType') == 'KalturaAPIException':
183 raise ExtractorError(
184 '%s said: %s (%d)' % (self.IE_NAME, status['message'], idx))
0d97ef43 185
5747d4f4 186 data[1] = traverse_obj(data, (1, 'objects', 0))
0d97ef43
NJ
187
188 return data
189
d9163ae3 190 def _get_video_info(self, video_id, partner_id, service_url=None):
0d97ef43
NJ
191 actions = [
192 {
5747d4f4
M
193 'apiVersion': '3.3.0',
194 'clientTag': 'html5:v3.1.0',
0d97ef43 195 'format': 1, # JSON, 2 = XML, 3 = PHP
5747d4f4
M
196 'ks': '',
197 'partnerId': partner_id,
1094074c
RA
198 },
199 {
200 'expiry': 86400,
201 'service': 'session',
202 'action': 'startWidgetSession',
203 'widgetId': '_%s' % partner_id,
0d97ef43
NJ
204 },
205 {
5747d4f4
M
206 'action': 'list',
207 'filter': {'redirectFromEntryId': video_id},
0d97ef43 208 'service': 'baseentry',
1094074c 209 'ks': '{1:result:ks}',
5747d4f4
M
210 'responseProfile': {
211 'type': 1,
212 'fields': 'createdAt,dataUrl,duration,name,plays,thumbnailUrl,userId',
213 },
0d97ef43
NJ
214 },
215 {
bb4b8c57 216 'action': 'getbyentryid',
0d97ef43 217 'entryId': video_id,
bb4b8c57 218 'service': 'flavorAsset',
1094074c
RA
219 'ks': '{1:result:ks}',
220 },
221 {
222 'action': 'list',
223 'filter:entryIdEqual': video_id,
224 'service': 'caption_captionasset',
225 'ks': '{1:result:ks}',
0d97ef43
NJ
226 },
227 ]
228 return self._kaltura_api_call(
d9163ae3 229 video_id, actions, service_url, note='Downloading video info JSON')
0d97ef43
NJ
230
231 def _real_extract(self, url):
01b06aed
S
232 url, smuggled_data = unsmuggle_url(url, {})
233
5ad28e7f 234 mobj = self._match_valid_url(url)
fac7e792 235 partner_id, entry_id = mobj.group('partner_id', 'id')
9dce3c09 236 ks = None
1094074c 237 captions = None
fac7e792 238 if partner_id and entry_id:
1094074c 239 _, info, flavor_assets, captions = self._get_video_info(entry_id, partner_id, smuggled_data.get('service_url'))
fac7e792 240 else:
241 path, query = mobj.group('path', 'query')
242 if not path and not query:
243 raise ExtractorError('Invalid URL', expected=True)
244 params = {}
245 if query:
246 params = compat_parse_qs(query)
247 if path:
248 splitted_path = path.split('/')
e5a2e17a 249 params.update(dict((zip(splitted_path[::2], [[v] for v in splitted_path[1::2]]))))
fac7e792 250 if 'wid' in params:
251 partner_id = params['wid'][0][1:]
252 elif 'p' in params:
253 partner_id = params['p'][0]
37084f66
RA
254 elif 'partner_id' in params:
255 partner_id = params['partner_id'][0]
fac7e792 256 else:
257 raise ExtractorError('Invalid URL', expected=True)
258 if 'entry_id' in params:
259 entry_id = params['entry_id'][0]
1094074c 260 _, info, flavor_assets, captions = self._get_video_info(entry_id, partner_id)
fac7e792 261 elif 'uiconf_id' in params and 'flashvars[referenceId]' in params:
262 reference_id = params['flashvars[referenceId]'][0]
263 webpage = self._download_webpage(url, reference_id)
264 entry_data = self._parse_json(self._search_regex(
265 r'window\.kalturaIframePackageData\s*=\s*({.*});',
266 webpage, 'kalturaIframePackageData'),
267 reference_id)['entryResult']
268 info, flavor_assets = entry_data['meta'], entry_data['contextData']['flavorAssets']
269 entry_id = info['id']
a8094467
S
270 # Unfortunately, data returned in kalturaIframePackageData lacks
271 # captions so we will try requesting the complete data using
272 # regular approach since we now know the entry_id
273 try:
274 _, info, flavor_assets, captions = self._get_video_info(
275 entry_id, partner_id)
276 except ExtractorError:
277 # Regular scenario failed but we already have everything
278 # extracted apart from captions and can process at least
279 # with this
280 pass
fac7e792 281 else:
282 raise ExtractorError('Invalid URL', expected=True)
9dce3c09 283 ks = params.get('flashvars[ks]', [None])[0]
0d97ef43 284
01b06aed
S
285 source_url = smuggled_data.get('source_url')
286 if source_url:
287 referrer = base64.b64encode(
288 '://'.join(compat_urlparse.urlparse(source_url)[:2])
289 .encode('utf-8')).decode('utf-8')
290 else:
291 referrer = None
292
9dce3c09
S
293 def sign_url(unsigned_url):
294 if ks:
295 unsigned_url += '/ks/%s' % ks
296 if referrer:
297 unsigned_url += '?referrer=%s' % referrer
298 return unsigned_url
299
81953d1a
RA
300 data_url = info['dataUrl']
301 if '/flvclipper/' in data_url:
302 data_url = re.sub(r'/flvclipper/.*', '/serveFlavor', data_url)
303
01b06aed 304 formats = []
3f047fc4 305 subtitles = {}
bb4b8c57 306 for f in flavor_assets:
307 # Continue if asset is not ready
1094074c 308 if f.get('status') != 2:
bb4b8c57 309 continue
e8bcd982
S
310 # Original format that's not available (e.g. kaltura:1926081:0_c03e1b5g)
311 # skip for now.
312 if f.get('fileExt') == 'chun':
313 continue
c0bddd6d 314 # DRM-protected video, cannot be decrypted
a06916d9 315 if not self.get_param('allow_unplayable_formats') and f.get('fileExt') == 'wvm':
c0bddd6d 316 continue
ab6f6aee 317 if not f.get('fileExt'):
8ab7e6c4 318 # QT indicates QuickTime; some videos have broken fileExt
ab6f6aee
S
319 if f.get('containerFormat') == 'qt':
320 f['fileExt'] = 'mov'
321 else:
322 f['fileExt'] = 'mp4'
81953d1a
RA
323 video_url = sign_url(
324 '%s/flavorId/%s' % (data_url, f['id']))
799756a3
S
325 format_id = '%(fileExt)s-%(bitrate)s' % f
326 # Source format may not be available (e.g. kaltura:513551:1_66x4rg7o)
327 if f.get('isOriginal') is True and not self._is_valid_url(
328 video_url, entry_id, format_id):
329 continue
1d16035b
S
330 # audio-only has no videoCodecId (e.g. kaltura:1926081:0_c03e1b5g
331 # -f mp4-56)
332 vcodec = 'none' if 'videoCodecId' not in f and f.get(
333 'frameRate') == 0 else f.get('videoCodecId')
01b06aed 334 formats.append({
799756a3 335 'format_id': format_id,
d80a39ce
S
336 'ext': f.get('fileExt'),
337 'tbr': int_or_none(f['bitrate']),
338 'fps': int_or_none(f.get('frameRate')),
01b06aed
S
339 'filesize_approx': int_or_none(f.get('size'), invscale=1024),
340 'container': f.get('containerFormat'),
1d16035b 341 'vcodec': vcodec,
d80a39ce
S
342 'height': int_or_none(f.get('height')),
343 'width': int_or_none(f.get('width')),
01b06aed
S
344 'url': video_url,
345 })
81953d1a
RA
346 if '/playManifest/' in data_url:
347 m3u8_url = sign_url(data_url.replace(
348 'format/url', 'format/applehttp'))
3f047fc4 349 fmts, subs = self._extract_m3u8_formats_and_subtitles(
81953d1a 350 m3u8_url, entry_id, 'mp4', 'm3u8_native',
3f047fc4
F
351 m3u8_id='hls', fatal=False)
352 formats.extend(fmts)
353 self._merge_subtitles(subs, target=subtitles)
bb4b8c57 354
0d97ef43
NJ
355 self._sort_formats(formats)
356
1094074c
RA
357 if captions:
358 for caption in captions.get('objects', []):
1094074c 359 # Continue if caption is not ready
65547082 360 if caption.get('status') != 2:
1094074c 361 continue
92d4cfa3
S
362 if not caption.get('id'):
363 continue
364 caption_format = int_or_none(caption.get('format'))
1094074c
RA
365 subtitles.setdefault(caption.get('languageCode') or caption.get('language'), []).append({
366 'url': '%s/api_v3/service/caption_captionasset/action/serve/captionAssetId/%s' % (self._SERVICE_URL, caption['id']),
92d4cfa3 367 'ext': caption.get('fileExt') or self._CAPTION_TYPES.get(caption_format) or 'ttml',
1094074c
RA
368 })
369
0d97ef43 370 return {
ee3ec091 371 'id': entry_id,
0d97ef43
NJ
372 'title': info['name'],
373 'formats': formats,
1094074c 374 'subtitles': subtitles,
bdceea7a 375 'description': clean_html(info.get('description')),
0d97ef43
NJ
376 'thumbnail': info.get('thumbnailUrl'),
377 'duration': info.get('duration'),
378 'timestamp': info.get('createdAt'),
e0ddbd02 379 'uploader_id': format_field(info, 'userId', ignore=('None', None)),
6d1b3489 380 'view_count': int_or_none(info.get('plays')),
0d97ef43 381 }