2 from __future__
import unicode_literals
7 from .common
import InfoExtractor
21 class KalturaIE(InfoExtractor
):
24 kaltura:(?P<partner_id>\d+):(?P<id>[0-9a-z_]+)|
26 (:?(?:www|cdnapi(?:sec)?)\.)?kaltura\.com(?::\d+)?/
30 index\.php/(?:kwidget|extwidget/preview)|
32 html5/html5lib/[^/]+/mwEmbedFrame\.php
34 )(?:/(?P<path>[^?]+))?(?:\?(?P<query>.*))?
37 _SERVICE_URL
= 'http://cdnapi.kaltura.com'
38 _SERVICE_BASE
= '/api_v3/index.php'
39 # See https://github.com/kaltura/server/blob/master/plugins/content/caption/base/lib/model/enums/CaptionType.php
47 'url': 'kaltura:269692:1_1jc2y3e4',
48 'md5': '3adcbdb3dcc02d647539e53f284ba171',
52 'title': 'Straight from the Heart',
53 'upload_date': '20131219',
54 'uploader_id': 'mlundberg@wolfgangsvault.com',
55 'description': 'The Allman Brothers Band, 12/16/1981',
56 'thumbnail': 're:^https?://.*/thumbnail/.*',
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,
65 'url': 'https://cdnapisec.kaltura.com/index.php/kwidget/wid/_557781/uiconf_id/22845202/entry_id/1_plr1syf3',
66 'only_matching': True,
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,
73 # video with subtitles
74 'url': 'kaltura:111032:1_cw786r8q',
75 'only_matching': True,
78 # video with ttml subtitles (no fileExt)
79 'url': 'kaltura:1926081:0_l5ye1133',
83 'title': 'What Can You Do With Python?',
84 'upload_date': '20160221',
85 'uploader_id': 'stork',
86 'thumbnail': 're:^https?://.*/thumbnail/.*',
94 'skip': 'Gone. Maybe https://www.safaribooksonline.com/library/tutorials/introduction-to-python-anon/3469/',
96 'skip_download': True,
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,
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,
110 def _extract_url(webpage
):
111 # Embed codes: https://knowledge.kaltura.com/embedding-kaltura-media-players-your-site
115 kWidget\.(?:thumb)?[Ee]mbed\(
117 (?P<q1>['"])wid(?P=q1)\s*:\s*
118 (?P<q2>['"])_?(?P<partner_id>(?:(?!(?P=q2)).)+)(?P=q2),.*?
119 (?P<q3>['"])entry_?[Ii]d(?P=q3)\s*:\s*
120 (?P<q4>['"])(?P<id>(?:(?!(?P=q4)).)+)(?P=q4)(?:,|\s*\})
125 (?:https?:)?//cdnapi(?:sec)?\.kaltura\.com(?::\d+)?/(?:(?!(?P=q1)).)*\b(?:p|partner_id)/(?P<partner_id>\d+)(?:(?!(?P=q1)).)*
130 (?P<q2>["'])entry_?[Ii]d(?P=q2)
132 \[\s*(?P<q2_1>["'])entry_?[Ii]d(?P=q2_1)\s*\]\s*=\s*
134 (?P<q3>["'])(?P<id>(?:(?!(?P=q3)).)+)(?P=q3)
138 <(?:iframe[^>]+src|meta[^>]+\bcontent)=(?P<q1>["'])
139 (?:https?:)?//(?:(?:www|cdnapi(?:sec)?)\.)?kaltura\.com/(?:(?!(?P=q1)).)*\b(?:p|partner_id)/(?P<partner_id>\d+)
141 [?&;]entry_id=(?P<id>(?:(?!(?P=q1))[^&])+)
147 embed_info
= mobj
.groupdict()
148 url
= 'kaltura:%(partner_id)s:%(id)s' % embed_info
149 escaped_pid
= re
.escape(embed_info
['partner_id'])
150 service_url
= re
.search(
151 r
'<script[^>]+src=["\']((?
:https?
:)?
//.+?
)/p
/%s/sp
/%s00/embedIframeJs
' % (escaped_pid, escaped_pid),
154 url = smuggle_url(url, {'service_url
': service_url.group(1)})
157 def _kaltura_api_call(self, video_id, actions, service_url=None, *args, **kwargs):
160 for i, a in enumerate(actions[1:], start=1):
161 for k, v in a.items():
162 params['%d:%s' % (i, k)] = v
164 data = self._download_json(
165 (service_url or self._SERVICE_URL) + self._SERVICE_BASE,
166 video_id, query=params, *args, **kwargs)
168 status = data if len(actions) == 1 else data[0]
169 if status.get('objectType
') == 'KalturaAPIException
':
170 raise ExtractorError(
171 '%s said
: %s' % (self.IE_NAME, status['message
']))
175 def _get_video_info(self, video_id, partner_id, service_url=None):
179 'apiVersion
': '3.1.5',
180 'clientTag
': 'kdp
:v3
.8
.5',
181 'format
': 1, # JSON, 2 = XML, 3 = PHP
182 'service
': 'multirequest
',
186 'service
': 'session
',
187 'action
': 'startWidgetSession
',
188 'widgetId
': '_
%s' % partner_id,
193 'service
': 'baseentry
',
194 'ks
': '{1:result:ks}
',
195 'responseProfile
:fields
': 'createdAt
,dataUrl
,duration
,name
,plays
,thumbnailUrl
,userId
',
196 'responseProfile
:type': 1,
199 'action
': 'getbyentryid
',
201 'service
': 'flavorAsset
',
202 'ks
': '{1:result:ks}
',
206 'filter:entryIdEqual
': video_id,
207 'service
': 'caption_captionasset
',
208 'ks
': '{1:result:ks}
',
211 return self._kaltura_api_call(
212 video_id, actions, service_url, note='Downloading video info JSON
')
214 def _real_extract(self, url):
215 url, smuggled_data = unsmuggle_url(url, {})
217 mobj = re.match(self._VALID_URL, url)
218 partner_id, entry_id = mobj.group('partner_id
', 'id')
221 if partner_id and entry_id:
222 _, info, flavor_assets, captions = self._get_video_info(entry_id, partner_id, smuggled_data.get('service_url
'))
224 path, query = mobj.group('path
', 'query
')
225 if not path and not query:
226 raise ExtractorError('Invalid URL
', expected=True)
229 params = compat_parse_qs(query)
231 splitted_path = path.split('/')
232 params.update(dict((zip(splitted_path[::2], [[v] for v in splitted_path[1::2]]))))
234 partner_id = params['wid
'][0][1:]
236 partner_id = params['p
'][0]
237 elif 'partner_id
' in params:
238 partner_id = params['partner_id
'][0]
240 raise ExtractorError('Invalid URL
', expected=True)
241 if 'entry_id
' in params:
242 entry_id = params['entry_id
'][0]
243 _, info, flavor_assets, captions = self._get_video_info(entry_id, partner_id)
244 elif 'uiconf_id
' in params and 'flashvars
[referenceId
]' in params:
245 reference_id = params['flashvars
[referenceId
]'][0]
246 webpage = self._download_webpage(url, reference_id)
247 entry_data = self._parse_json(self._search_regex(
248 r'window\
.kalturaIframePackageData\s
*=\s
*({.*});',
249 webpage, 'kalturaIframePackageData
'),
250 reference_id)['entryResult
']
251 info, flavor_assets = entry_data['meta
'], entry_data['contextData
']['flavorAssets
']
252 entry_id = info['id']
253 # Unfortunately, data returned in kalturaIframePackageData lacks
254 # captions so we will try requesting the complete data using
255 # regular approach since we now know the entry_id
257 _, info, flavor_assets, captions = self._get_video_info(
258 entry_id, partner_id)
259 except ExtractorError:
260 # Regular scenario failed but we already have everything
261 # extracted apart from captions and can process at least
265 raise ExtractorError('Invalid URL
', expected=True)
266 ks = params.get('flashvars
[ks
]', [None])[0]
268 source_url = smuggled_data.get('source_url
')
270 referrer = base64.b64encode(
271 '://'.join(compat_urlparse.urlparse(source_url)[:2])
272 .encode('utf
-8')).decode('utf
-8')
276 def sign_url(unsigned_url):
278 unsigned_url += '/ks
/%s' % ks
280 unsigned_url += '?referrer
=%s' % referrer
283 data_url = info['dataUrl
']
284 if '/flvclipper
/' in data_url:
285 data_url = re.sub(r'/flvclipper
/.*', '/serveFlavor
', data_url)
288 for f in flavor_assets:
289 # Continue if asset is not ready
290 if f.get('status
') != 2:
292 # Original format that's
not available (e
.g
. kaltura
:1926081:0_c
03e
1b
5g
)
294 if f
.get('fileExt') == 'chun':
296 # DRM-protected video, cannot be decrypted
297 if f
.get('fileExt') == 'wvm':
299 if not f
.get('fileExt'):
300 # QT indicates QuickTime; some videos have broken fileExt
301 if f
.get('containerFormat') == 'qt':
305 video_url
= sign_url(
306 '%s/flavorId/%s' % (data_url
, f
['id']))
307 # audio-only has no videoCodecId (e.g. kaltura:1926081:0_c03e1b5g
309 vcodec
= 'none' if 'videoCodecId' not in f
and f
.get(
310 'frameRate') == 0 else f
.get('videoCodecId')
312 'format_id': '%(fileExt)s-%(bitrate)s' % f
,
313 'ext': f
.get('fileExt'),
314 'tbr': int_or_none(f
['bitrate']),
315 'fps': int_or_none(f
.get('frameRate')),
316 'filesize_approx': int_or_none(f
.get('size'), invscale
=1024),
317 'container': f
.get('containerFormat'),
319 'height': int_or_none(f
.get('height')),
320 'width': int_or_none(f
.get('width')),
323 if '/playManifest/' in data_url
:
324 m3u8_url
= sign_url(data_url
.replace(
325 'format/url', 'format/applehttp'))
326 formats
.extend(self
._extract
_m
3u8_formats
(
327 m3u8_url
, entry_id
, 'mp4', 'm3u8_native',
328 m3u8_id
='hls', fatal
=False))
330 self
._sort
_formats
(formats
)
334 for caption
in captions
.get('objects', []):
335 # Continue if caption is not ready
336 if caption
.get('status') != 2:
338 if not caption
.get('id'):
340 caption_format
= int_or_none(caption
.get('format'))
341 subtitles
.setdefault(caption
.get('languageCode') or caption
.get('language'), []).append({
342 'url': '%s/api_v3/service/caption_captionasset/action/serve/captionAssetId/%s' % (self
._SERVICE
_URL
, caption
['id']),
343 'ext': caption
.get('fileExt') or self
._CAPTION
_TYPES
.get(caption_format
) or 'ttml',
348 'title': info
['name'],
350 'subtitles': subtitles
,
351 'description': clean_html(info
.get('description')),
352 'thumbnail': info
.get('thumbnailUrl'),
353 'duration': info
.get('duration'),
354 'timestamp': info
.get('createdAt'),
355 'uploader_id': info
.get('userId') if info
.get('userId') != 'None' else None,
356 'view_count': info
.get('plays'),