]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/cbc.py
[cleanup] Use `_html_extract_title`
[yt-dlp.git] / yt_dlp / extractor / cbc.py
CommitLineData
8b85ac3f 1# coding: utf-8
2from __future__ import unicode_literals
3
4import re
d183af3c 5import json
6import base64
7import time
8b85ac3f 8
9from .common import InfoExtractor
64f03e5b
S
10from ..compat import (
11 compat_str,
64f03e5b 12)
52f7c75c 13from ..utils import (
54c2521c
DS
14 int_or_none,
15 join_nonempty,
52f7c75c 16 js_to_json,
f20f6365 17 orderedSet,
54c2521c 18 smuggle_url,
986c0b02 19 strip_or_none,
54c2521c 20 try_get,
30afe4ae 21 ExtractorError,
52f7c75c 22)
8b85ac3f 23
24
25class CBCIE(InfoExtractor):
30afe4ae 26 IE_NAME = 'cbc.ca'
043dc9d3 27 _VALID_URL = r'https?://(?:www\.)?cbc\.ca/(?!player/)(?:[^/]+/)+(?P<id>[^/?#]+)'
8b85ac3f 28 _TESTS = [{
29 # with mediaId
30 'url': 'http://www.cbc.ca/22minutes/videos/clips-season-23/don-cherry-play-offs',
52f7c75c 31 'md5': '97e24d09672fc4cf56256d6faa6c25bc',
8b85ac3f 32 'info_dict': {
33 'id': '2682904050',
52f7c75c 34 'ext': 'mp4',
8b85ac3f 35 'title': 'Don Cherry – All-Stars',
36 'description': 'Don Cherry has a bee in his bonnet about AHL player John Scott because that guy’s got heart.',
52f7c75c 37 'timestamp': 1454463000,
8b85ac3f 38 'upload_date': '20160203',
52f7c75c 39 'uploader': 'CBCC-NEW',
8b85ac3f 40 },
21ba7d09 41 'skip': 'Geo-restricted to Canada',
8b85ac3f 42 }, {
88bd486b
S
43 # with clipId, feed available via tpfeed.cbc.ca and feed.theplatform.com
44 'url': 'http://www.cbc.ca/22minutes/videos/22-minutes-update/22-minutes-update-episode-4',
45 'md5': '162adfa070274b144f4fdc3c3b8207db',
46 'info_dict': {
47 'id': '2414435309',
48 'ext': 'mp4',
49 'title': '22 Minutes Update: What Not To Wear Quebec',
50 'description': "This week's latest Canadian top political story is What Not To Wear Quebec.",
51 'upload_date': '20131025',
52 'uploader': 'CBCC-NEW',
53 'timestamp': 1382717907,
54 },
0d32e124 55 'skip': 'No longer available',
88bd486b
S
56 }, {
57 # with clipId, feed only available via tpfeed.cbc.ca
8b85ac3f 58 'url': 'http://www.cbc.ca/archives/entry/1978-robin-williams-freestyles-on-90-minutes-live',
64413f75 59 'md5': '0274a90b51a9b4971fe005c63f592f12',
8b85ac3f 60 'info_dict': {
61 'id': '2487345465',
52f7c75c 62 'ext': 'mp4',
8b85ac3f 63 'title': 'Robin Williams freestyles on 90 Minutes Live',
64 'description': 'Wacky American comedian Robin Williams shows off his infamous "freestyle" comedic talents while being interviewed on CBC\'s 90 Minutes Live.',
52f7c75c 65 'upload_date': '19780210',
0738187f 66 'uploader': 'CBCC-NEW',
52f7c75c 67 'timestamp': 255977160,
8b85ac3f 68 },
69 }, {
70 # multiple iframes
71 'url': 'http://www.cbc.ca/natureofthings/blog/birds-eye-view-from-vancouvers-burrard-street-bridge-how-we-got-the-shot',
72 'playlist': [{
52f7c75c 73 'md5': '377572d0b49c4ce0c9ad77470e0b96b4',
8b85ac3f 74 'info_dict': {
75 'id': '2680832926',
52f7c75c 76 'ext': 'mp4',
8b85ac3f 77 'title': 'An Eagle\'s-Eye View Off Burrard Bridge',
78 'description': 'Hercules the eagle flies from Vancouver\'s Burrard Bridge down to a nearby park with a mini-camera strapped to his back.',
52f7c75c 79 'upload_date': '20160201',
80 'timestamp': 1454342820,
81 'uploader': 'CBCC-NEW',
8b85ac3f 82 },
83 }, {
52f7c75c 84 'md5': '415a0e3f586113894174dfb31aa5bb1a',
8b85ac3f 85 'info_dict': {
86 'id': '2658915080',
52f7c75c 87 'ext': 'mp4',
8b85ac3f 88 'title': 'Fly like an eagle!',
89 'description': 'Eagle equipped with a mini camera flies from the world\'s tallest tower',
52f7c75c 90 'upload_date': '20150315',
91 'timestamp': 1426443984,
92 'uploader': 'CBCC-NEW',
8b85ac3f 93 },
94 }],
21ba7d09 95 'skip': 'Geo-restricted to Canada',
abe8cb76
S
96 }, {
97 # multiple CBC.APP.Caffeine.initInstance(...)
98 'url': 'http://www.cbc.ca/news/canada/calgary/dog-indoor-exercise-winter-1.3928238',
99 'info_dict': {
100 'title': 'Keep Rover active during the deep freeze with doggie pushups and other fun indoor tasks',
101 'id': 'dog-indoor-exercise-winter-1.3928238',
c95e2b59 102 'description': 'md5:c18552e41726ee95bd75210d1ca9194c',
abe8cb76
S
103 },
104 'playlist_mincount': 6,
8b85ac3f 105 }]
106
107 @classmethod
108 def suitable(cls, url):
109 return False if CBCPlayerIE.suitable(url) else super(CBCIE, cls).suitable(url)
110
abe8cb76
S
111 def _extract_player_init(self, player_init, display_id):
112 player_info = self._parse_json(player_init, display_id, js_to_json)
113 media_id = player_info.get('mediaId')
114 if not media_id:
115 clip_id = player_info['clipId']
116 feed = self._download_json(
117 'http://tpfeed.cbc.ca/f/ExhSPC/vms_5akSXx4Ng_Zn?byCustomValue={:mpsReleases}{%s}' % clip_id,
118 clip_id, fatal=False)
119 if feed:
120 media_id = try_get(feed, lambda x: x['entries'][0]['guid'], compat_str)
121 if not media_id:
122 media_id = self._download_json(
123 'http://feed.theplatform.com/f/h9dtGB/punlNGjMlc1F?fields=id&byContent=byReleases%3DbyId%253D' + clip_id,
124 clip_id)['entries'][0]['id'].split('/')[-1]
125 return self.url_result('cbcplayer:%s' % media_id, 'CBCPlayer', media_id)
126
8b85ac3f 127 def _real_extract(self, url):
128 display_id = self._match_id(url)
129 webpage = self._download_webpage(url, display_id)
04f3fd2c 130 title = (self._og_search_title(webpage, default=None)
131 or self._html_search_meta('twitter:title', webpage, 'title', default=None)
132 or self._html_extract_title(webpage))
abe8cb76
S
133 entries = [
134 self._extract_player_init(player_init, display_id)
135 for player_init in re.findall(r'CBC\.APP\.Caffeine\.initInstance\(({.+?})\);', webpage)]
f20f6365
S
136 media_ids = []
137 for media_id_re in (
138 r'<iframe[^>]+src="[^"]+?mediaId=(\d+)"',
139 r'<div[^>]+\bid=["\']player-(\d+)',
140 r'guid["\']\s*:\s*["\'](\d+)'):
141 media_ids.extend(re.findall(media_id_re, webpage))
abe8cb76
S
142 entries.extend([
143 self.url_result('cbcplayer:%s' % media_id, 'CBCPlayer', media_id)
f20f6365 144 for media_id in orderedSet(media_ids)])
abe8cb76 145 return self.playlist_result(
986c0b02 146 entries, display_id, strip_or_none(title),
abe8cb76 147 self._og_search_description(webpage))
8b85ac3f 148
149
150class CBCPlayerIE(InfoExtractor):
30afe4ae 151 IE_NAME = 'cbc.ca:player'
8b85ac3f 152 _VALID_URL = r'(?:cbcplayer:|https?://(?:www\.)?cbc\.ca/(?:player/play/|i/caffeine/syndicate/\?mediaId=))(?P<id>\d+)'
31a70191 153 _TESTS = [{
8b85ac3f 154 'url': 'http://www.cbc.ca/player/play/2683190193',
64413f75 155 'md5': '64d25f841ddf4ddb28a235338af32e2c',
8b85ac3f 156 'info_dict': {
157 'id': '2683190193',
52f7c75c 158 'ext': 'mp4',
8b85ac3f 159 'title': 'Gerry Runs a Sweat Shop',
160 'description': 'md5:b457e1c01e8ff408d9d801c1c2cd29b0',
52f7c75c 161 'timestamp': 1455071400,
8b85ac3f 162 'upload_date': '20160210',
52f7c75c 163 'uploader': 'CBCC-NEW',
8b85ac3f 164 },
21ba7d09 165 'skip': 'Geo-restricted to Canada',
31a70191
YCH
166 }, {
167 # Redirected from http://www.cbc.ca/player/AudioMobile/All%20in%20a%20Weekend%20Montreal/ID/2657632011/
168 'url': 'http://www.cbc.ca/player/play/2657631896',
169 'md5': 'e5e708c34ae6fca156aafe17c43e8b75',
170 'info_dict': {
171 'id': '2657631896',
172 'ext': 'mp3',
173 'title': 'CBC Montreal is organizing its first ever community hackathon!',
174 'description': 'The modern technology we tend to depend on so heavily, is never without it\'s share of hiccups and headaches. Next weekend - CBC Montreal will be getting members of the public for its first Hackathon.',
175 'timestamp': 1425704400,
176 'upload_date': '20150307',
177 'uploader': 'CBCC-NEW',
178 },
64413f75 179 }, {
64413f75 180 'url': 'http://www.cbc.ca/player/play/2164402062',
c95e2b59 181 'md5': '33fcd8f6719b9dd60a5e73adcb83b9f6',
64413f75 182 'info_dict': {
183 'id': '2164402062',
c95e2b59 184 'ext': 'mp4',
64413f75 185 'title': 'Cancer survivor four times over',
186 'description': 'Tim Mayer has beaten three different forms of cancer four times in five years.',
187 'timestamp': 1320410746,
188 'upload_date': '20111104',
189 'uploader': 'CBCC-NEW',
190 },
31a70191 191 }]
8b85ac3f 192
193 def _real_extract(self, url):
194 video_id = self._match_id(url)
52f7c75c 195 return {
196 '_type': 'url_transparent',
197 'ie_key': 'ThePlatform',
198 'url': smuggle_url(
64413f75 199 'http://link.theplatform.com/s/ExhSPC/media/guid/2655402169/%s?mbr=true&formats=MPEG4,FLV,MP3' % video_id, {
52f7c75c 200 'force_smil_url': True
201 }),
202 'id': video_id,
203 }
30afe4ae
RA
204
205
0d32e124 206class CBCGemIE(InfoExtractor):
207 IE_NAME = 'gem.cbc.ca'
208 _VALID_URL = r'https?://gem\.cbc\.ca/media/(?P<id>[0-9a-z-]+/s[0-9]+[a-z][0-9]+)'
209 _TESTS = [{
0d32e124 210 # This is a normal, public, TV show video
211 'url': 'https://gem.cbc.ca/media/schitts-creek/s06e01',
212 'md5': '93dbb31c74a8e45b378cf13bd3f6f11e',
213 'info_dict': {
214 'id': 'schitts-creek/s06e01',
215 'ext': 'mp4',
216 'title': 'Smoke Signals',
217 'description': 'md5:929868d20021c924020641769eb3e7f1',
218 'thumbnail': 'https://images.radio-canada.ca/v1/synps-cbc/episode/perso/cbc_schitts_creek_season_06e01_thumbnail_v01.jpg?im=Resize=(Size)',
219 'duration': 1314,
220 'categories': ['comedy'],
221 'series': 'Schitt\'s Creek',
222 'season': 'Season 6',
223 'season_number': 6,
224 'episode': 'Smoke Signals',
225 'episode_number': 1,
226 'episode_id': 'schitts-creek/s06e01',
227 },
228 'params': {'format': 'bv'},
229 'skip': 'Geo-restricted to Canada',
230 }, {
0d32e124 231 # This video requires an account in the browser, but works fine in yt-dlp
232 'url': 'https://gem.cbc.ca/media/schitts-creek/s01e01',
233 'md5': '297a9600f554f2258aed01514226a697',
234 'info_dict': {
235 'id': 'schitts-creek/s01e01',
236 'ext': 'mp4',
237 'title': 'The Cup Runneth Over',
238 'description': 'md5:9bca14ea49ab808097530eb05a29e797',
239 'thumbnail': 'https://images.radio-canada.ca/v1/synps-cbc/episode/perso/cbc_schitts_creek_season_01e01_thumbnail_v01.jpg?im=Resize=(Size)',
240 'series': 'Schitt\'s Creek',
241 'season_number': 1,
242 'season': 'Season 1',
243 'episode_number': 1,
244 'episode': 'The Cup Runneth Over',
245 'episode_id': 'schitts-creek/s01e01',
246 'duration': 1309,
247 'categories': ['comedy'],
248 },
249 'params': {'format': 'bv'},
250 'skip': 'Geo-restricted to Canada',
251 }]
d183af3c 252
253 _GEO_COUNTRIES = ['CA']
254 _TOKEN_API_KEY = '3f4beddd-2061-49b0-ae80-6f1f2ed65b37'
255 _NETRC_MACHINE = 'cbcgem'
256 _claims_token = None
257
258 def _new_claims_token(self, email, password):
259 data = json.dumps({
260 'email': email,
261 'password': password,
262 }).encode()
263 headers = {'content-type': 'application/json'}
264 query = {'apikey': self._TOKEN_API_KEY}
265 resp = self._download_json('https://api.loginradius.com/identity/v2/auth/login',
266 None, data=data, headers=headers, query=query)
267 access_token = resp['access_token']
268
269 query = {
270 'access_token': access_token,
271 'apikey': self._TOKEN_API_KEY,
272 'jwtapp': 'jwt',
273 }
274 resp = self._download_json('https://cloud-api.loginradius.com/sso/jwt/api/token',
275 None, headers=headers, query=query)
276 sig = resp['signature']
277
278 data = json.dumps({'jwt': sig}).encode()
279 headers = {'content-type': 'application/json', 'ott-device-type': 'web'}
280 resp = self._download_json('https://services.radio-canada.ca/ott/cbc-api/v2/token',
281 None, data=data, headers=headers)
282 cbc_access_token = resp['accessToken']
283
284 headers = {'content-type': 'application/json', 'ott-device-type': 'web', 'ott-access-token': cbc_access_token}
285 resp = self._download_json('https://services.radio-canada.ca/ott/cbc-api/v2/profile',
286 None, headers=headers)
287 return resp['claimsToken']
288
289 def _get_claims_token_expiry(self):
290 # Token is a JWT
291 # JWT is decoded here and 'exp' field is extracted
292 # It is a Unix timestamp for when the token expires
293 b64_data = self._claims_token.split('.')[1]
294 data = base64.urlsafe_b64decode(b64_data + "==")
295 return json.loads(data)['exp']
296
297 def claims_token_expired(self):
298 exp = self._get_claims_token_expiry()
299 if exp - time.time() < 10:
300 # It will expire in less than 10 seconds, or has already expired
301 return True
302 return False
303
304 def claims_token_valid(self):
305 return self._claims_token is not None and not self.claims_token_expired()
306
307 def _get_claims_token(self, email, password):
308 if not self.claims_token_valid():
309 self._claims_token = self._new_claims_token(email, password)
310 self._downloader.cache.store(self._NETRC_MACHINE, 'claims_token', self._claims_token)
311 return self._claims_token
312
313 def _real_initialize(self):
314 if self.claims_token_valid():
315 return
316 self._claims_token = self._downloader.cache.load(self._NETRC_MACHINE, 'claims_token')
30afe4ae 317
54c2521c
DS
318 def _find_secret_formats(self, formats, video_id):
319 """ Find a valid video url and convert it to the secret variant """
320 base_format = next((f for f in formats if f.get('vcodec') != 'none'), None)
321 if not base_format:
322 return
323
324 base_url = re.sub(r'(Manifest\(.*?),filter=[\w-]+(.*?\))', r'\1\2', base_format['url'])
325 url = re.sub(r'(Manifest\(.*?),format=[\w-]+(.*?\))', r'\1\2', base_url)
326
327 secret_xml = self._download_xml(url, video_id, note='Downloading secret XML', fatal=False)
328 if not secret_xml:
329 return
330
331 for child in secret_xml:
332 if child.attrib.get('Type') != 'video':
333 continue
334 for video_quality in child:
335 bitrate = int_or_none(video_quality.attrib.get('Bitrate'))
336 if not bitrate or 'Index' not in video_quality.attrib:
337 continue
338 height = int_or_none(video_quality.attrib.get('MaxHeight'))
339
340 yield {
341 **base_format,
342 'format_id': join_nonempty('sec', height),
332da56f 343 # Note: \g<1> is necessary instead of \1 since bitrate is a number
344 'url': re.sub(r'(QualityLevels\()\d+(\))', fr'\g<1>{bitrate}\2', base_url),
54c2521c
DS
345 'width': int_or_none(video_quality.attrib.get('MaxWidth')),
346 'tbr': bitrate / 1000.0,
347 'height': height,
348 }
349
30afe4ae
RA
350 def _real_extract(self, url):
351 video_id = self._match_id(url)
d183af3c 352 video_info = self._download_json('https://services.radio-canada.ca/ott/cbc-api/v2/assets/' + video_id, video_id)
353
354 email, password = self._get_login_info()
355 if email and password:
356 claims_token = self._get_claims_token(email, password)
357 headers = {'x-claims-token': claims_token}
358 else:
359 headers = {}
360 m3u8_info = self._download_json(video_info['playSession']['url'], video_id, headers=headers)
361 m3u8_url = m3u8_info.get('url')
0d32e124 362
d183af3c 363 if m3u8_info.get('errorCode') == 1:
364 self.raise_geo_restricted(countries=['CA'])
365 elif m3u8_info.get('errorCode') == 35:
366 self.raise_login_required(method='password')
367 elif m3u8_info.get('errorCode') != 0:
368 raise ExtractorError(f'{self.IE_NAME} said: {m3u8_info.get("errorCode")} - {m3u8_info.get("message")}')
0d32e124 369
370 formats = self._extract_m3u8_formats(m3u8_url, video_id, m3u8_id='hls')
371 self._remove_duplicate_formats(formats)
54c2521c 372 formats.extend(self._find_secret_formats(formats, video_id))
0d32e124 373
d183af3c 374 for format in formats:
0d32e124 375 if format.get('vcodec') == 'none':
376 if format.get('ext') is None:
377 format['ext'] = 'm4a'
378 if format.get('acodec') is None:
379 format['acodec'] = 'mp4a.40.2'
380
381 # Put described audio at the beginning of the list, so that it
382 # isn't chosen by default, as most people won't want it.
383 if 'descriptive' in format['format_id'].lower():
384 format['preference'] = -2
385
30afe4ae
RA
386 self._sort_formats(formats)
387
0d32e124 388 return {
30afe4ae 389 'id': video_id,
0d32e124 390 'title': video_info['title'],
391 'description': video_info.get('description'),
392 'thumbnail': video_info.get('image'),
393 'series': video_info.get('series'),
394 'season_number': video_info.get('season'),
395 'season': f'Season {video_info.get("season")}',
396 'episode_number': video_info.get('episode'),
397 'episode': video_info.get('title'),
398 'episode_id': video_id,
399 'duration': video_info.get('duration'),
400 'categories': [video_info.get('category')],
30afe4ae 401 'formats': formats,
0d32e124 402 'release_timestamp': video_info.get('airDate'),
403 'timestamp': video_info.get('availableDate'),
30afe4ae
RA
404 }
405
30afe4ae 406
0d32e124 407class CBCGemPlaylistIE(InfoExtractor):
408 IE_NAME = 'gem.cbc.ca:playlist'
409 _VALID_URL = r'https?://gem\.cbc\.ca/media/(?P<id>(?P<show>[0-9a-z-]+)/s(?P<season>[0-9]+))/?(?:[?#]|$)'
30afe4ae 410 _TESTS = [{
0d32e124 411 # TV show playlist, all public videos
412 'url': 'https://gem.cbc.ca/media/schitts-creek/s06',
413 'playlist_count': 16,
30afe4ae 414 'info_dict': {
0d32e124 415 'id': 'schitts-creek/s06',
416 'title': 'Season 6',
417 'description': 'md5:6a92104a56cbeb5818cc47884d4326a2',
30afe4ae 418 },
30afe4ae 419 }]
0d32e124 420 _API_BASE = 'https://services.radio-canada.ca/ott/cbc-api/v2/shows/'
30afe4ae
RA
421
422 def _real_extract(self, url):
0d32e124 423 match = self._match_valid_url(url)
424 season_id = match.group('id')
425 show = match.group('show')
426 show_info = self._download_json(self._API_BASE + show, season_id)
427 season = int(match.group('season'))
013ae2e5 428
429 season_info = next((s for s in show_info['seasons'] if s.get('season') == season), None)
0d32e124 430
431 if season_info is None:
432 raise ExtractorError(f'Couldn\'t find season {season} of {show}')
433
434 episodes = []
435 for episode in season_info['assets']:
436 episodes.append({
437 '_type': 'url_transparent',
438 'ie_key': 'CBCGem',
439 'url': 'https://gem.cbc.ca/media/' + episode['id'],
440 'id': episode['id'],
441 'title': episode.get('title'),
442 'description': episode.get('description'),
443 'thumbnail': episode.get('image'),
444 'series': episode.get('series'),
445 'season_number': episode.get('season'),
446 'season': season_info['title'],
447 'season_id': season_info.get('id'),
448 'episode_number': episode.get('episode'),
449 'episode': episode.get('title'),
450 'episode_id': episode['id'],
451 'duration': episode.get('duration'),
452 'categories': [episode.get('category')],
453 })
b12cf31b 454
0d32e124 455 thumbnail = None
456 tn_uri = season_info.get('image')
457 # the-national was observed to use a "data:image/png;base64"
458 # URI for their 'image' value. The image was 1x1, and is
459 # probably just a placeholder, so it is ignored.
460 if tn_uri is not None and not tn_uri.startswith('data:'):
461 thumbnail = tn_uri
b12cf31b 462
0d32e124 463 return {
464 '_type': 'playlist',
465 'entries': episodes,
466 'id': season_id,
467 'title': season_info['title'],
468 'description': season_info.get('description'),
469 'thumbnail': thumbnail,
470 'series': show_info.get('title'),
471 'season_number': season_info.get('season'),
472 'season': season_info['title'],
473 }
474
475
476class CBCGemLiveIE(InfoExtractor):
477 IE_NAME = 'gem.cbc.ca:live'
3c239332 478 _VALID_URL = r'https?://gem\.cbc\.ca/live/(?P<id>\d+)'
0d32e124 479 _TEST = {
480 'url': 'https://gem.cbc.ca/live/920604739687',
481 'info_dict': {
482 'title': 'Ottawa',
483 'description': 'The live TV channel and local programming from Ottawa',
484 'thumbnail': 'https://thumbnails.cbc.ca/maven_legacy/thumbnails/CBC_OTT_VMS/Live_Channel_Static_Images/Ottawa_2880x1620.jpg',
485 'is_live': True,
486 'id': 'AyqZwxRqh8EH',
487 'ext': 'mp4',
488 'timestamp': 1492106160,
489 'upload_date': '20170413',
490 'uploader': 'CBCC-NEW',
491 },
492 'skip': 'Live might have ended',
493 }
494
495 # It's unclear where the chars at the end come from, but they appear to be
496 # constant. Might need updating in the future.
3c239332 497 # There are two URLs, some livestreams are in one, and some
498 # in the other. The JSON schema is the same for both.
499 _API_URLS = ['https://tpfeed.cbc.ca/f/ExhSPC/t_t3UKJR6MAT', 'https://tpfeed.cbc.ca/f/ExhSPC/FNiv9xQx_BnT']
b12cf31b
RA
500
501 def _real_extract(self, url):
0d32e124 502 video_id = self._match_id(url)
0d32e124 503
3c239332 504 for api_url in self._API_URLS:
505 video_info = next((
506 stream for stream in self._download_json(api_url, video_id)['entries']
507 if stream.get('guid') == video_id), None)
508 if video_info:
509 break
510 else:
511 raise ExtractorError('Couldn\'t find video metadata, maybe this livestream is now offline', expected=True)
b12cf31b
RA
512
513 return {
0d32e124 514 '_type': 'url_transparent',
515 'ie_key': 'ThePlatform',
516 'url': video_info['content'][0]['url'],
b12cf31b 517 'id': video_id,
0d32e124 518 'title': video_info.get('title'),
519 'description': video_info.get('description'),
520 'tags': try_get(video_info, lambda x: x['keywords'].split(', ')),
521 'thumbnail': video_info.get('cbc$staticImage'),
522 'is_live': True,
b12cf31b 523 }