]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/generic.py
[ie/generic] Fix generic title for embeds
[yt-dlp.git] / yt_dlp / extractor / generic.py
1 import os
2 import re
3 import types
4 import urllib.parse
5 import xml.etree.ElementTree
6
7 from .common import InfoExtractor # isort: split
8 from .commonprotocols import RtmpIE
9 from .youtube import YoutubeIE
10 from ..compat import compat_etree_fromstring
11 from ..utils import (
12 KNOWN_EXTENSIONS,
13 MEDIA_EXTENSIONS,
14 ExtractorError,
15 UnsupportedError,
16 determine_ext,
17 determine_protocol,
18 dict_get,
19 extract_basic_auth,
20 format_field,
21 int_or_none,
22 is_html,
23 js_to_json,
24 merge_dicts,
25 mimetype2ext,
26 orderedSet,
27 parse_duration,
28 parse_resolution,
29 smuggle_url,
30 str_or_none,
31 traverse_obj,
32 try_call,
33 unescapeHTML,
34 unified_timestamp,
35 unsmuggle_url,
36 update_url_query,
37 url_or_none,
38 urljoin,
39 variadic,
40 xpath_attr,
41 xpath_text,
42 xpath_with_ns,
43 )
44
45
46 class GenericIE(InfoExtractor):
47 IE_DESC = 'Generic downloader that works on some sites'
48 _VALID_URL = r'.*'
49 IE_NAME = 'generic'
50 _NETRC_MACHINE = False # Suppress username warning
51 _TESTS = [
52 # Direct link to a video
53 {
54 'url': 'http://media.w3.org/2010/05/sintel/trailer.mp4',
55 'md5': '67d406c2bcb6af27fa886f31aa934bbe',
56 'info_dict': {
57 'id': 'trailer',
58 'ext': 'mp4',
59 'title': 'trailer',
60 'upload_date': '20100513',
61 }
62 },
63 # Direct link to media delivered compressed (until Accept-Encoding is *)
64 {
65 'url': 'http://calimero.tk/muzik/FictionJunction-Parallel_Hearts.flac',
66 'md5': '128c42e68b13950268b648275386fc74',
67 'info_dict': {
68 'id': 'FictionJunction-Parallel_Hearts',
69 'ext': 'flac',
70 'title': 'FictionJunction-Parallel_Hearts',
71 'upload_date': '20140522',
72 },
73 'expected_warnings': [
74 'URL could be a direct video link, returning it as such.'
75 ],
76 'skip': 'URL invalid',
77 },
78 # Direct download with broken HEAD
79 {
80 'url': 'http://ai-radio.org:8000/radio.opus',
81 'info_dict': {
82 'id': 'radio',
83 'ext': 'opus',
84 'title': 'radio',
85 },
86 'params': {
87 'skip_download': True, # infinite live stream
88 },
89 'expected_warnings': [
90 r'501.*Not Implemented',
91 r'400.*Bad Request',
92 ],
93 },
94 # Direct link with incorrect MIME type
95 {
96 'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
97 'md5': '4ccbebe5f36706d85221f204d7eb5913',
98 'info_dict': {
99 'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
100 'id': '5_Lennart_Poettering_-_Systemd',
101 'ext': 'webm',
102 'title': '5_Lennart_Poettering_-_Systemd',
103 'upload_date': '20141120',
104 },
105 'expected_warnings': [
106 'URL could be a direct video link, returning it as such.'
107 ]
108 },
109 # RSS feed
110 {
111 'url': 'http://phihag.de/2014/youtube-dl/rss2.xml',
112 'info_dict': {
113 'id': 'https://phihag.de/2014/youtube-dl/rss2.xml',
114 'title': 'Zero Punctuation',
115 'description': 're:.*groundbreaking video review series.*'
116 },
117 'playlist_mincount': 11,
118 },
119 # RSS feed with enclosure
120 {
121 'url': 'http://podcastfeeds.nbcnews.com/audio/podcast/MSNBC-MADDOW-NETCAST-M4V.xml',
122 'info_dict': {
123 'id': 'http://podcastfeeds.nbcnews.com/nbcnews/video/podcast/MSNBC-MADDOW-NETCAST-M4V.xml',
124 'title': 'MSNBC Rachel Maddow (video)',
125 'description': 're:.*her unique approach to storytelling.*',
126 },
127 'playlist': [{
128 'info_dict': {
129 'ext': 'mov',
130 'id': 'pdv_maddow_netcast_mov-12-03-2020-223726',
131 'title': 'MSNBC Rachel Maddow (video) - 12-03-2020-223726',
132 'description': 're:.*her unique approach to storytelling.*',
133 'upload_date': '20201204',
134 },
135 }],
136 },
137 # RSS feed with item with description and thumbnails
138 {
139 'url': 'https://anchor.fm/s/dd00e14/podcast/rss',
140 'info_dict': {
141 'id': 'https://anchor.fm/s/dd00e14/podcast/rss',
142 'title': 're:.*100% Hydrogen.*',
143 'description': 're:.*In this episode.*',
144 },
145 'playlist': [{
146 'info_dict': {
147 'ext': 'm4a',
148 'id': 'c1c879525ce2cb640b344507e682c36d',
149 'title': 're:Hydrogen!',
150 'description': 're:.*In this episode we are going.*',
151 'timestamp': 1567977776,
152 'upload_date': '20190908',
153 'duration': 459,
154 'thumbnail': r're:^https?://.*\.jpg$',
155 'episode_number': 1,
156 'season_number': 1,
157 'age_limit': 0,
158 'season': 'Season 1',
159 'direct': True,
160 'episode': 'Episode 1',
161 },
162 }],
163 'params': {
164 'skip_download': True,
165 },
166 },
167 # RSS feed with enclosures and unsupported link URLs
168 {
169 'url': 'http://www.hellointernet.fm/podcast?format=rss',
170 'info_dict': {
171 'id': 'http://www.hellointernet.fm/podcast?format=rss',
172 'description': 'CGP Grey and Brady Haran talk about YouTube, life, work, whatever.',
173 'title': 'Hello Internet',
174 },
175 'playlist_mincount': 100,
176 },
177 # RSS feed with guid
178 {
179 'url': 'https://www.omnycontent.com/d/playlist/a7b4f8fe-59d9-4afc-a79a-a90101378abf/bf2c1d80-3656-4449-9d00-a903004e8f84/efbff746-e7c1-463a-9d80-a903004e8f8f/podcast.rss',
180 'info_dict': {
181 'id': 'https://www.omnycontent.com/d/playlist/a7b4f8fe-59d9-4afc-a79a-a90101378abf/bf2c1d80-3656-4449-9d00-a903004e8f84/efbff746-e7c1-463a-9d80-a903004e8f8f/podcast.rss',
182 'description': 'md5:be809a44b63b0c56fb485caf68685520',
183 'title': 'The Little Red Podcast',
184 },
185 'playlist_mincount': 76,
186 },
187 # SMIL from http://videolectures.net/promogram_igor_mekjavic_eng
188 {
189 'url': 'http://videolectures.net/promogram_igor_mekjavic_eng/video/1/smil.xml',
190 'info_dict': {
191 'id': 'smil',
192 'ext': 'mp4',
193 'title': 'Automatics, robotics and biocybernetics',
194 'description': 'md5:815fc1deb6b3a2bff99de2d5325be482',
195 'upload_date': '20130627',
196 'formats': 'mincount:16',
197 'subtitles': 'mincount:1',
198 },
199 'params': {
200 'force_generic_extractor': True,
201 'skip_download': True,
202 },
203 },
204 # SMIL from http://www1.wdr.de/mediathek/video/livestream/index.html
205 {
206 'url': 'http://metafilegenerator.de/WDR/WDR_FS/hds/hds.smil',
207 'info_dict': {
208 'id': 'hds',
209 'ext': 'flv',
210 'title': 'hds',
211 'formats': 'mincount:1',
212 },
213 'params': {
214 'skip_download': True,
215 },
216 },
217 # SMIL from https://www.restudy.dk/video/play/id/1637
218 {
219 'url': 'https://www.restudy.dk/awsmedia/SmilDirectory/video_1637.xml',
220 'info_dict': {
221 'id': 'video_1637',
222 'ext': 'flv',
223 'title': 'video_1637',
224 'formats': 'mincount:3',
225 },
226 'params': {
227 'skip_download': True,
228 },
229 },
230 # SMIL from http://adventure.howstuffworks.com/5266-cool-jobs-iditarod-musher-video.htm
231 {
232 'url': 'http://services.media.howstuffworks.com/videos/450221/smil-service.smil',
233 'info_dict': {
234 'id': 'smil-service',
235 'ext': 'flv',
236 'title': 'smil-service',
237 'formats': 'mincount:1',
238 },
239 'params': {
240 'skip_download': True,
241 },
242 },
243 # SMIL from http://new.livestream.com/CoheedandCambria/WebsterHall/videos/4719370
244 {
245 'url': 'http://api.new.livestream.com/accounts/1570303/events/1585861/videos/4719370.smil',
246 'info_dict': {
247 'id': '4719370',
248 'ext': 'mp4',
249 'title': '571de1fd-47bc-48db-abf9-238872a58d1f',
250 'formats': 'mincount:3',
251 },
252 'params': {
253 'skip_download': True,
254 },
255 },
256 # XSPF playlist from http://www.telegraaf.nl/tv/nieuws/binnenland/24353229/__Tikibad_ontruimd_wegens_brand__.html
257 {
258 'url': 'http://www.telegraaf.nl/xml/playlist/2015/8/7/mZlp2ctYIUEB.xspf',
259 'info_dict': {
260 'id': 'mZlp2ctYIUEB',
261 'ext': 'mp4',
262 'title': 'Tikibad ontruimd wegens brand',
263 'description': 'md5:05ca046ff47b931f9b04855015e163a4',
264 'thumbnail': r're:^https?://.*\.jpg$',
265 'duration': 33,
266 },
267 'params': {
268 'skip_download': True,
269 },
270 },
271 # MPD from http://dash-mse-test.appspot.com/media.html
272 {
273 'url': 'http://yt-dash-mse-test.commondatastorage.googleapis.com/media/car-20120827-manifest.mpd',
274 'md5': '4b57baab2e30d6eb3a6a09f0ba57ef53',
275 'info_dict': {
276 'id': 'car-20120827-manifest',
277 'ext': 'mp4',
278 'title': 'car-20120827-manifest',
279 'formats': 'mincount:9',
280 'upload_date': '20130904',
281 },
282 },
283 # m3u8 served with Content-Type: audio/x-mpegURL; charset=utf-8
284 {
285 'url': 'http://once.unicornmedia.com/now/master/playlist/bb0b18ba-64f5-4b1b-a29f-0ac252f06b68/77a785f3-5188-4806-b788-0893a61634ed/93677179-2d99-4ef4-9e17-fe70d49abfbf/content.m3u8',
286 'info_dict': {
287 'id': 'content',
288 'ext': 'mp4',
289 'title': 'content',
290 'formats': 'mincount:8',
291 },
292 'params': {
293 # m3u8 downloads
294 'skip_download': True,
295 },
296 'skip': 'video gone',
297 },
298 # m3u8 served with Content-Type: text/plain
299 {
300 'url': 'http://www.nacentapps.com/m3u8/index.m3u8',
301 'info_dict': {
302 'id': 'index',
303 'ext': 'mp4',
304 'title': 'index',
305 'upload_date': '20140720',
306 'formats': 'mincount:11',
307 },
308 'params': {
309 # m3u8 downloads
310 'skip_download': True,
311 },
312 'skip': 'video gone',
313 },
314 # google redirect
315 {
316 'url': 'http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&ved=0CCUQtwIwAA&url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DcmQHVoWB5FY&ei=F-sNU-LLCaXk4QT52ICQBQ&usg=AFQjCNEw4hL29zgOohLXvpJ-Bdh2bils1Q&bvm=bv.61965928,d.bGE',
317 'info_dict': {
318 'id': 'cmQHVoWB5FY',
319 'ext': 'mp4',
320 'upload_date': '20130224',
321 'uploader_id': 'TheVerge',
322 'description': r're:^Chris Ziegler takes a look at the\.*',
323 'uploader': 'The Verge',
324 'title': 'First Firefox OS phones side-by-side',
325 },
326 'params': {
327 'skip_download': False,
328 }
329 },
330 {
331 # redirect in Refresh HTTP header
332 'url': 'https://www.facebook.com/l.php?u=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DpO8h3EaFRdo&h=TAQHsoToz&enc=AZN16h-b6o4Zq9pZkCCdOLNKMN96BbGMNtcFwHSaazus4JHT_MFYkAA-WARTX2kvsCIdlAIyHZjl6d33ILIJU7Jzwk_K3mcenAXoAzBNoZDI_Q7EXGDJnIhrGkLXo_LJ_pAa2Jzbx17UHMd3jAs--6j2zaeto5w9RTn8T_1kKg3fdC5WPX9Dbb18vzH7YFX0eSJmoa6SP114rvlkw6pkS1-T&s=1',
333 'info_dict': {
334 'id': 'pO8h3EaFRdo',
335 'ext': 'mp4',
336 'title': 'Tripeo Boiler Room x Dekmantel Festival DJ Set',
337 'description': 'md5:6294cc1af09c4049e0652b51a2df10d5',
338 'upload_date': '20150917',
339 'uploader_id': 'brtvofficial',
340 'uploader': 'Boiler Room',
341 },
342 'params': {
343 'skip_download': False,
344 },
345 },
346 {
347 'url': 'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html',
348 'md5': '85b90ccc9d73b4acd9138d3af4c27f89',
349 'info_dict': {
350 'id': '13601338388002',
351 'ext': 'mp4',
352 'uploader': 'www.hodiho.fr',
353 'title': 'R\u00e9gis plante sa Jeep',
354 }
355 },
356 # bandcamp page with custom domain
357 {
358 'add_ie': ['Bandcamp'],
359 'url': 'http://bronyrock.com/track/the-pony-mash',
360 'info_dict': {
361 'id': '3235767654',
362 'ext': 'mp3',
363 'title': 'The Pony Mash',
364 'uploader': 'M_Pallante',
365 },
366 'skip': 'There is a limit of 200 free downloads / month for the test song',
367 },
368 # ooyala video
369 {
370 'url': 'http://www.rollingstone.com/music/videos/norwegian-dj-cashmere-cat-goes-spartan-on-with-me-premiere-20131219',
371 'md5': '166dd577b433b4d4ebfee10b0824d8ff',
372 'info_dict': {
373 'id': 'BwY2RxaTrTkslxOfcan0UCf0YqyvWysJ',
374 'ext': 'mp4',
375 'title': '2cc213299525360.mov', # that's what we get
376 'duration': 238.231,
377 },
378 'add_ie': ['Ooyala'],
379 },
380 {
381 # ooyala video embedded with http://player.ooyala.com/iframe.js
382 'url': 'http://www.macrumors.com/2015/07/24/steve-jobs-the-man-in-the-machine-first-trailer/',
383 'info_dict': {
384 'id': 'p0MGJndjoG5SOKqO_hZJuZFPB-Tr5VgB',
385 'ext': 'mp4',
386 'title': '"Steve Jobs: Man in the Machine" trailer',
387 'description': 'The first trailer for the Alex Gibney documentary "Steve Jobs: Man in the Machine."',
388 'duration': 135.427,
389 },
390 'params': {
391 'skip_download': True,
392 },
393 'skip': 'movie expired',
394 },
395 # ooyala video embedded with http://player.ooyala.com/static/v4/production/latest/core.min.js
396 {
397 'url': 'http://wnep.com/2017/07/22/steampunk-fest-comes-to-honesdale/',
398 'info_dict': {
399 'id': 'lwYWYxYzE6V5uJMjNGyKtwwiw9ZJD7t2',
400 'ext': 'mp4',
401 'title': 'Steampunk Fest Comes to Honesdale',
402 'duration': 43.276,
403 },
404 'params': {
405 'skip_download': True,
406 }
407 },
408 # embed.ly video
409 {
410 'url': 'http://www.tested.com/science/weird/460206-tested-grinding-coffee-2000-frames-second/',
411 'info_dict': {
412 'id': '9ODmcdjQcHQ',
413 'ext': 'mp4',
414 'title': 'Tested: Grinding Coffee at 2000 Frames Per Second',
415 'upload_date': '20140225',
416 'description': 'md5:06a40fbf30b220468f1e0957c0f558ff',
417 'uploader': 'Tested',
418 'uploader_id': 'testedcom',
419 },
420 # No need to test YoutubeIE here
421 'params': {
422 'skip_download': True,
423 },
424 },
425 # funnyordie embed
426 {
427 'url': 'http://www.theguardian.com/world/2014/mar/11/obama-zach-galifianakis-between-two-ferns',
428 'info_dict': {
429 'id': '18e820ec3f',
430 'ext': 'mp4',
431 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama',
432 'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',
433 },
434 # HEAD requests lead to endless 301, while GET is OK
435 'expected_warnings': ['301'],
436 },
437 # RUTV embed
438 {
439 'url': 'http://www.rg.ru/2014/03/15/reg-dfo/anklav-anons.html',
440 'info_dict': {
441 'id': '776940',
442 'ext': 'mp4',
443 'title': 'Охотское море стало целиком российским',
444 'description': 'md5:5ed62483b14663e2a95ebbe115eb8f43',
445 },
446 'params': {
447 # m3u8 download
448 'skip_download': True,
449 },
450 },
451 # TVC embed
452 {
453 'url': 'http://sch1298sz.mskobr.ru/dou_edu/karamel_ki/filial_galleries/video/iframe_src_http_tvc_ru_video_iframe_id_55304_isplay_false_acc_video_id_channel_brand_id_11_show_episodes_episode_id_32307_frameb/',
454 'info_dict': {
455 'id': '55304',
456 'ext': 'mp4',
457 'title': 'Дошкольное воспитание',
458 },
459 },
460 # SportBox embed
461 {
462 'url': 'http://www.vestifinance.ru/articles/25753',
463 'info_dict': {
464 'id': '25753',
465 'title': 'Прямые трансляции с Форума-выставки "Госзаказ-2013"',
466 },
467 'playlist': [{
468 'info_dict': {
469 'id': '370908',
470 'title': 'Госзаказ. День 3',
471 'ext': 'mp4',
472 }
473 }, {
474 'info_dict': {
475 'id': '370905',
476 'title': 'Госзаказ. День 2',
477 'ext': 'mp4',
478 }
479 }, {
480 'info_dict': {
481 'id': '370902',
482 'title': 'Госзаказ. День 1',
483 'ext': 'mp4',
484 }
485 }],
486 'params': {
487 # m3u8 download
488 'skip_download': True,
489 },
490 },
491 # Myvi.ru embed
492 {
493 'url': 'http://www.kinomyvi.tv/news/detail/Pervij-dublirovannij-trejler--Uzhastikov-_nOw1',
494 'info_dict': {
495 'id': 'f4dafcad-ff21-423d-89b5-146cfd89fa1e',
496 'ext': 'mp4',
497 'title': 'Ужастики, русский трейлер (2015)',
498 'thumbnail': r're:^https?://.*\.jpg$',
499 'duration': 153,
500 }
501 },
502 # XHamster embed
503 {
504 'url': 'http://www.numisc.com/forum/showthread.php?11696-FM15-which-pumiscer-was-this-%28-vid-%29-%28-alfa-as-fuck-srx-%29&s=711f5db534502e22260dec8c5e2d66d8',
505 'info_dict': {
506 'id': 'showthread',
507 'title': '[NSFL] [FM15] which pumiscer was this ( vid ) ( alfa as fuck srx )',
508 },
509 'playlist_mincount': 7,
510 # This forum does not allow <iframe> syntaxes anymore
511 # Now HTML tags are displayed as-is
512 'skip': 'No videos on this page',
513 },
514 # Embedded TED video
515 {
516 'url': 'http://en.support.wordpress.com/videos/ted-talks/',
517 'md5': '65fdff94098e4a607385a60c5177c638',
518 'info_dict': {
519 'id': '1969',
520 'ext': 'mp4',
521 'title': 'Hidden miracles of the natural world',
522 'uploader': 'Louie Schwartzberg',
523 'description': 'md5:8145d19d320ff3e52f28401f4c4283b9',
524 }
525 },
526 # nowvideo embed hidden behind percent encoding
527 {
528 'url': 'http://www.waoanime.tv/the-super-dimension-fortress-macross-episode-1/',
529 'md5': '2baf4ddd70f697d94b1c18cf796d5107',
530 'info_dict': {
531 'id': '06e53103ca9aa',
532 'ext': 'flv',
533 'title': 'Macross Episode 001 Watch Macross Episode 001 onl',
534 'description': 'No description',
535 },
536 },
537 # arte embed
538 {
539 'url': 'http://www.tv-replay.fr/redirection/20-03-14/x-enius-arte-10753389.html',
540 'md5': '7653032cbb25bf6c80d80f217055fa43',
541 'info_dict': {
542 'id': '048195-004_PLUS7-F',
543 'ext': 'flv',
544 'title': 'X:enius',
545 'description': 'md5:d5fdf32ef6613cdbfd516ae658abf168',
546 'upload_date': '20140320',
547 },
548 'params': {
549 'skip_download': 'Requires rtmpdump'
550 },
551 'skip': 'video gone',
552 },
553 # francetv embed
554 {
555 'url': 'http://www.tsprod.com/replay-du-concert-alcaline-de-calogero',
556 'info_dict': {
557 'id': 'EV_30231',
558 'ext': 'mp4',
559 'title': 'Alcaline, le concert avec Calogero',
560 'description': 'md5:61f08036dcc8f47e9cfc33aed08ffaff',
561 'upload_date': '20150226',
562 'timestamp': 1424989860,
563 'duration': 5400,
564 },
565 'params': {
566 # m3u8 downloads
567 'skip_download': True,
568 },
569 'expected_warnings': [
570 'Forbidden'
571 ]
572 },
573 # Condé Nast embed
574 {
575 'url': 'http://www.wired.com/2014/04/honda-asimo/',
576 'md5': 'ba0dfe966fa007657bd1443ee672db0f',
577 'info_dict': {
578 'id': '53501be369702d3275860000',
579 'ext': 'mp4',
580 'title': 'Honda’s New Asimo Robot Is More Human Than Ever',
581 }
582 },
583 # Dailymotion embed
584 {
585 'url': 'http://www.spi0n.com/zap-spi0n-com-n216/',
586 'md5': '441aeeb82eb72c422c7f14ec533999cd',
587 'info_dict': {
588 'id': 'k2mm4bCdJ6CQ2i7c8o2',
589 'ext': 'mp4',
590 'title': 'Le Zap de Spi0n n°216 - Zapping du Web',
591 'description': 'md5:faf028e48a461b8b7fad38f1e104b119',
592 'uploader': 'Spi0n',
593 'uploader_id': 'xgditw',
594 'upload_date': '20140425',
595 'timestamp': 1398441542,
596 },
597 'add_ie': ['Dailymotion'],
598 },
599 # DailyMail embed
600 {
601 'url': 'http://www.bumm.sk/krimi/2017/07/05/biztonsagi-kamera-buktatta-le-az-agg-ferfit-utlegelo-apolot',
602 'info_dict': {
603 'id': '1495629',
604 'ext': 'mp4',
605 'title': 'Care worker punches elderly dementia patient in head 11 times',
606 'description': 'md5:3a743dee84e57e48ec68bf67113199a5',
607 },
608 'add_ie': ['DailyMail'],
609 'params': {
610 'skip_download': True,
611 },
612 },
613 # YouTube embed
614 {
615 'url': 'http://www.badzine.de/ansicht/datum/2014/06/09/so-funktioniert-die-neue-englische-badminton-liga.html',
616 'info_dict': {
617 'id': 'FXRb4ykk4S0',
618 'ext': 'mp4',
619 'title': 'The NBL Auction 2014',
620 'uploader': 'BADMINTON England',
621 'uploader_id': 'BADMINTONEvents',
622 'upload_date': '20140603',
623 'description': 'md5:9ef128a69f1e262a700ed83edb163a73',
624 },
625 'add_ie': ['Youtube'],
626 'params': {
627 'skip_download': True,
628 }
629 },
630 # MTVServices embed
631 {
632 'url': 'http://www.vulture.com/2016/06/new-key-peele-sketches-released.html',
633 'md5': 'ca1aef97695ef2c1d6973256a57e5252',
634 'info_dict': {
635 'id': '769f7ec0-0692-4d62-9b45-0d88074bffc1',
636 'ext': 'mp4',
637 'title': 'Key and Peele|October 10, 2012|2|203|Liam Neesons - Uncensored',
638 'description': 'Two valets share their love for movie star Liam Neesons.',
639 'timestamp': 1349922600,
640 'upload_date': '20121011',
641 },
642 },
643 # YouTube embed via <data-embed-url="">
644 {
645 'url': 'https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM',
646 'info_dict': {
647 'id': '4vAffPZIT44',
648 'ext': 'mp4',
649 'title': 'Asphalt 8: Airborne - Update - Welcome to Dubai!',
650 'uploader': 'Gameloft',
651 'uploader_id': 'gameloft',
652 'upload_date': '20140828',
653 'description': 'md5:c80da9ed3d83ae6d1876c834de03e1c4',
654 },
655 'params': {
656 'skip_download': True,
657 }
658 },
659 # Flowplayer
660 {
661 'url': 'http://www.handjobhub.com/video/busty-blonde-siri-tit-fuck-while-wank-6313.html',
662 'md5': '9d65602bf31c6e20014319c7d07fba27',
663 'info_dict': {
664 'id': '5123ea6d5e5a7',
665 'ext': 'mp4',
666 'age_limit': 18,
667 'uploader': 'www.handjobhub.com',
668 'title': 'Busty Blonde Siri Tit Fuck While Wank at HandjobHub.com',
669 }
670 },
671 # MLB embed
672 {
673 'url': 'http://umpire-empire.com/index.php/topic/58125-laz-decides-no-thats-low/',
674 'md5': '96f09a37e44da40dd083e12d9a683327',
675 'info_dict': {
676 'id': '33322633',
677 'ext': 'mp4',
678 'title': 'Ump changes call to ball',
679 'description': 'md5:71c11215384298a172a6dcb4c2e20685',
680 'duration': 48,
681 'timestamp': 1401537900,
682 'upload_date': '20140531',
683 'thumbnail': r're:^https?://.*\.jpg$',
684 },
685 },
686 # Wistia standard embed (async)
687 {
688 'url': 'https://www.getdrip.com/university/brennan-dunn-drip-workshop/',
689 'info_dict': {
690 'id': '807fafadvk',
691 'ext': 'mp4',
692 'title': 'Drip Brennan Dunn Workshop',
693 'description': 'a JV Webinars video from getdrip-1',
694 'duration': 4986.95,
695 'timestamp': 1463607249,
696 'upload_date': '20160518',
697 },
698 'params': {
699 'skip_download': True,
700 },
701 'skip': 'webpage 404 not found',
702 },
703 # Soundcloud embed
704 {
705 'url': 'http://nakedsecurity.sophos.com/2014/10/29/sscc-171-are-you-sure-that-1234-is-a-bad-password-podcast/',
706 'info_dict': {
707 'id': '174391317',
708 'ext': 'mp3',
709 'description': 'md5:ff867d6b555488ad3c52572bb33d432c',
710 'uploader': 'Sophos Security',
711 'title': 'Chet Chat 171 - Oct 29, 2014',
712 'upload_date': '20141029',
713 }
714 },
715 # Soundcloud multiple embeds
716 {
717 'url': 'http://www.guitarplayer.com/lessons/1014/legato-workout-one-hour-to-more-fluid-performance---tab/52809',
718 'info_dict': {
719 'id': '52809',
720 'title': 'Guitar Essentials: Legato Workout—One-Hour to Fluid Performance | TAB + AUDIO',
721 },
722 'playlist_mincount': 7,
723 },
724 # TuneIn station embed
725 {
726 'url': 'http://radiocnrv.com/promouvoir-radio-cnrv/',
727 'info_dict': {
728 'id': '204146',
729 'ext': 'mp3',
730 'title': 'CNRV',
731 'location': 'Paris, France',
732 'is_live': True,
733 },
734 'params': {
735 # Live stream
736 'skip_download': True,
737 },
738 },
739 # Livestream embed
740 {
741 'url': 'http://www.esa.int/Our_Activities/Space_Science/Rosetta/Philae_comet_touch-down_webcast',
742 'info_dict': {
743 'id': '67864563',
744 'ext': 'flv',
745 'upload_date': '20141112',
746 'title': 'Rosetta #CometLanding webcast HL 10',
747 }
748 },
749 # Another Livestream embed, without 'new.' in URL
750 {
751 'url': 'https://www.freespeech.org/',
752 'info_dict': {
753 'id': '123537347',
754 'ext': 'mp4',
755 'title': 're:^FSTV [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
756 },
757 'params': {
758 # Live stream
759 'skip_download': True,
760 },
761 },
762 # LazyYT
763 {
764 'url': 'https://skiplagged.com/',
765 'info_dict': {
766 'id': 'skiplagged',
767 'title': 'Skiplagged: The smart way to find cheap flights',
768 },
769 'playlist_mincount': 1,
770 'add_ie': ['Youtube'],
771 },
772 # Cinchcast embed
773 {
774 'url': 'http://undergroundwellness.com/podcasts/306-5-steps-to-permanent-gut-healing/',
775 'info_dict': {
776 'id': '7141703',
777 'ext': 'mp3',
778 'upload_date': '20141126',
779 'title': 'Jack Tips: 5 Steps to Permanent Gut Healing',
780 }
781 },
782 # Cinerama player
783 {
784 'url': 'http://www.abc.net.au/7.30/content/2015/s4164797.htm',
785 'info_dict': {
786 'id': '730m_DandD_1901_512k',
787 'ext': 'mp4',
788 'uploader': 'www.abc.net.au',
789 'title': 'Game of Thrones with dice - Dungeons and Dragons fantasy role-playing game gets new life - 19/01/2015',
790 }
791 },
792 # embedded viddler video
793 {
794 'url': 'http://deadspin.com/i-cant-stop-watching-john-wall-chop-the-nuggets-with-th-1681801597',
795 'info_dict': {
796 'id': '4d03aad9',
797 'ext': 'mp4',
798 'uploader': 'deadspin',
799 'title': 'WALL-TO-GORTAT',
800 'timestamp': 1422285291,
801 'upload_date': '20150126',
802 },
803 'add_ie': ['Viddler'],
804 },
805 # Libsyn embed
806 {
807 'url': 'http://thedailyshow.cc.com/podcast/episodetwelve',
808 'info_dict': {
809 'id': '3377616',
810 'ext': 'mp3',
811 'title': "The Daily Show Podcast without Jon Stewart - Episode 12: Bassem Youssef: Egypt's Jon Stewart",
812 'description': 'md5:601cb790edd05908957dae8aaa866465',
813 'upload_date': '20150220',
814 },
815 'skip': 'All The Daily Show URLs now redirect to http://www.cc.com/shows/',
816 },
817 # jwplayer YouTube
818 {
819 'url': 'http://media.nationalarchives.gov.uk/index.php/webinar-using-discovery-national-archives-online-catalogue/',
820 'info_dict': {
821 'id': 'Mrj4DVp2zeA',
822 'ext': 'mp4',
823 'upload_date': '20150212',
824 'uploader': 'The National Archives UK',
825 'description': 'md5:8078af856dca76edc42910b61273dbbf',
826 'uploader_id': 'NationalArchives08',
827 'title': 'Webinar: Using Discovery, The National Archives’ online catalogue',
828 },
829 },
830 # jwplayer rtmp
831 {
832 'url': 'http://www.suffolk.edu/sjc/live.php',
833 'info_dict': {
834 'id': 'live',
835 'ext': 'flv',
836 'title': 'Massachusetts Supreme Judicial Court Oral Arguments',
837 'uploader': 'www.suffolk.edu',
838 },
839 'params': {
840 'skip_download': True,
841 },
842 'skip': 'Only has video a few mornings per month, see http://www.suffolk.edu/sjc/',
843 },
844 # jwplayer with only the json URL
845 {
846 'url': 'https://www.hollywoodreporter.com/news/general-news/dunkirk-team-reveals-what-christopher-nolan-said-oscar-win-meet-your-oscar-winner-1092454',
847 'info_dict': {
848 'id': 'TljWkvWH',
849 'ext': 'mp4',
850 'upload_date': '20180306',
851 'title': 'md5:91eb1862f6526415214f62c00b453936',
852 'description': 'md5:73048ae50ae953da10549d1d2fe9b3aa',
853 'timestamp': 1520367225,
854 },
855 'params': {
856 'skip_download': True,
857 },
858 },
859 # Complex jwplayer
860 {
861 'url': 'http://www.indiedb.com/games/king-machine/videos',
862 'info_dict': {
863 'id': 'videos',
864 'ext': 'mp4',
865 'title': 'king machine trailer 1',
866 'description': 'Browse King Machine videos & audio for sweet media. Your eyes will thank you.',
867 'thumbnail': r're:^https?://.*\.jpg$',
868 },
869 },
870 {
871 # Youtube embed, formerly: Video.js embed, multiple formats
872 'url': 'http://ortcam.com/solidworks-урок-6-настройка-чертежа_33f9b7351.html',
873 'info_dict': {
874 'id': 'yygqldloqIk',
875 'ext': 'mp4',
876 'title': 'SolidWorks. Урок 6 Настройка чертежа',
877 'description': 'md5:baf95267792646afdbf030e4d06b2ab3',
878 'upload_date': '20130314',
879 'uploader': 'PROстое3D',
880 'uploader_id': 'PROstoe3D',
881 },
882 'params': {
883 'skip_download': True,
884 },
885 },
886 {
887 # Video.js embed, single format
888 'url': 'https://www.vooplayer.com/v3/watch/watch.php?v=NzgwNTg=',
889 'info_dict': {
890 'id': 'watch',
891 'ext': 'mp4',
892 'title': 'Step 1 - Good Foundation',
893 'description': 'md5:d1e7ff33a29fc3eb1673d6c270d344f4',
894 },
895 'params': {
896 'skip_download': True,
897 },
898 'skip': '404 Not Found',
899 },
900 # rtl.nl embed
901 {
902 'url': 'http://www.rtlnieuws.nl/nieuws/buitenland/aanslagen-kopenhagen',
903 'playlist_mincount': 5,
904 'info_dict': {
905 'id': 'aanslagen-kopenhagen',
906 'title': 'Aanslagen Kopenhagen',
907 }
908 },
909 # Zapiks embed
910 {
911 'url': 'http://www.skipass.com/news/116090-bon-appetit-s5ep3-baqueira-mi-cor.html',
912 'info_dict': {
913 'id': '118046',
914 'ext': 'mp4',
915 'title': 'EP3S5 - Bon Appétit - Baqueira Mi Corazon !',
916 }
917 },
918 # Kaltura embed (different embed code)
919 {
920 'url': 'http://www.premierchristianradio.com/Shows/Saturday/Unbelievable/Conference-Videos/Os-Guinness-Is-It-Fools-Talk-Unbelievable-Conference-2014',
921 'info_dict': {
922 'id': '1_a52wc67y',
923 'ext': 'flv',
924 'upload_date': '20150127',
925 'uploader_id': 'PremierMedia',
926 'timestamp': int,
927 'title': 'Os Guinness // Is It Fools Talk? // Unbelievable? Conference 2014',
928 },
929 },
930 # Kaltura embed with single quotes
931 {
932 'url': 'http://fod.infobase.com/p_ViewPlaylist.aspx?AssignmentID=NUN8ZY',
933 'info_dict': {
934 'id': '0_izeg5utt',
935 'ext': 'mp4',
936 'title': '35871',
937 'timestamp': 1355743100,
938 'upload_date': '20121217',
939 'uploader_id': 'cplapp@learn360.com',
940 },
941 'add_ie': ['Kaltura'],
942 },
943 {
944 # Kaltura embedded via quoted entry_id
945 'url': 'https://www.oreilly.com/ideas/my-cloud-makes-pretty-pictures',
946 'info_dict': {
947 'id': '0_utuok90b',
948 'ext': 'mp4',
949 'title': '06_matthew_brender_raj_dutt',
950 'timestamp': 1466638791,
951 'upload_date': '20160622',
952 },
953 'add_ie': ['Kaltura'],
954 'expected_warnings': [
955 'Could not send HEAD request'
956 ],
957 'params': {
958 'skip_download': True,
959 }
960 },
961 {
962 # Kaltura embedded, some fileExt broken (#11480)
963 'url': 'http://www.cornell.edu/video/nima-arkani-hamed-standard-models-of-particle-physics',
964 'info_dict': {
965 'id': '1_sgtvehim',
966 'ext': 'mp4',
967 'title': 'Our "Standard Models" of particle physics and cosmology',
968 'description': 'md5:67ea74807b8c4fea92a6f38d6d323861',
969 'timestamp': 1321158993,
970 'upload_date': '20111113',
971 'uploader_id': 'kps1',
972 },
973 'add_ie': ['Kaltura'],
974 },
975 {
976 # Kaltura iframe embed
977 'url': 'http://www.gsd.harvard.edu/event/i-m-pei-a-centennial-celebration/',
978 'md5': 'ae5ace8eb09dc1a35d03b579a9c2cc44',
979 'info_dict': {
980 'id': '0_f2cfbpwy',
981 'ext': 'mp4',
982 'title': 'I. M. Pei: A Centennial Celebration',
983 'description': 'md5:1db8f40c69edc46ca180ba30c567f37c',
984 'upload_date': '20170403',
985 'uploader_id': 'batchUser',
986 'timestamp': 1491232186,
987 },
988 'add_ie': ['Kaltura'],
989 },
990 {
991 # Kaltura iframe embed, more sophisticated
992 'url': 'http://www.cns.nyu.edu/~eero/math-tools/Videos/lecture-05sep2017.html',
993 'info_dict': {
994 'id': '1_9gzouybz',
995 'ext': 'mp4',
996 'title': 'lecture-05sep2017',
997 'description': 'md5:40f347d91fd4ba047e511c5321064b49',
998 'upload_date': '20170913',
999 'uploader_id': 'eps2',
1000 'timestamp': 1505340777,
1001 },
1002 'params': {
1003 'skip_download': True,
1004 },
1005 'add_ie': ['Kaltura'],
1006 },
1007 {
1008 # meta twitter:player
1009 'url': 'http://thechive.com/2017/12/08/all-i-want-for-christmas-is-more-twerk/',
1010 'info_dict': {
1011 'id': '0_01b42zps',
1012 'ext': 'mp4',
1013 'title': 'Main Twerk (Video)',
1014 'upload_date': '20171208',
1015 'uploader_id': 'sebastian.salinas@thechive.com',
1016 'timestamp': 1512713057,
1017 },
1018 'params': {
1019 'skip_download': True,
1020 },
1021 'add_ie': ['Kaltura'],
1022 },
1023 # referrer protected EaglePlatform embed
1024 {
1025 'url': 'https://tvrain.ru/lite/teleshow/kak_vse_nachinalos/namin-418921/',
1026 'info_dict': {
1027 'id': '582306',
1028 'ext': 'mp4',
1029 'title': 'Стас Намин: «Мы нарушили девственность Кремля»',
1030 'thumbnail': r're:^https?://.*\.jpg$',
1031 'duration': 3382,
1032 'view_count': int,
1033 },
1034 'params': {
1035 'skip_download': True,
1036 },
1037 },
1038 # ClipYou (EaglePlatform) embed (custom URL)
1039 {
1040 'url': 'http://muz-tv.ru/play/7129/',
1041 # Not checking MD5 as sometimes the direct HTTP link results in 404 and HLS is used
1042 'info_dict': {
1043 'id': '12820',
1044 'ext': 'mp4',
1045 'title': "'O Sole Mio",
1046 'thumbnail': r're:^https?://.*\.jpg$',
1047 'duration': 216,
1048 'view_count': int,
1049 },
1050 'params': {
1051 'skip_download': True,
1052 },
1053 'skip': 'This video is unavailable.',
1054 },
1055 # Pladform embed
1056 {
1057 'url': 'http://muz-tv.ru/kinozal/view/7400/',
1058 'info_dict': {
1059 'id': '100183293',
1060 'ext': 'mp4',
1061 'title': 'Тайны перевала Дятлова • 1 серия 2 часть',
1062 'description': 'Документальный сериал-расследование одной из самых жутких тайн ХХ века',
1063 'thumbnail': r're:^https?://.*\.jpg$',
1064 'duration': 694,
1065 'age_limit': 0,
1066 },
1067 'skip': 'HTTP Error 404: Not Found',
1068 },
1069 # Playwire embed
1070 {
1071 'url': 'http://www.cinemablend.com/new/First-Joe-Dirt-2-Trailer-Teaser-Stupid-Greatness-70874.html',
1072 'info_dict': {
1073 'id': '3519514',
1074 'ext': 'mp4',
1075 'title': 'Joe Dirt 2 Beautiful Loser Teaser Trailer',
1076 'thumbnail': r're:^https?://.*\.png$',
1077 'duration': 45.115,
1078 },
1079 },
1080 # Crooks and Liars embed
1081 {
1082 'url': 'http://crooksandliars.com/2015/04/fox-friends-says-protecting-atheists',
1083 'info_dict': {
1084 'id': '8RUoRhRi',
1085 'ext': 'mp4',
1086 'title': "Fox & Friends Says Protecting Atheists From Discrimination Is Anti-Christian!",
1087 'description': 'md5:e1a46ad1650e3a5ec7196d432799127f',
1088 'timestamp': 1428207000,
1089 'upload_date': '20150405',
1090 'uploader': 'Heather',
1091 },
1092 },
1093 # Crooks and Liars external embed
1094 {
1095 'url': 'http://theothermccain.com/2010/02/02/video-proves-that-bill-kristol-has-been-watching-glenn-beck/comment-page-1/',
1096 'info_dict': {
1097 'id': 'MTE3MjUtMzQ2MzA',
1098 'ext': 'mp4',
1099 'title': 'md5:5e3662a81a4014d24c250d76d41a08d5',
1100 'description': 'md5:9b8e9542d6c3c5de42d6451b7d780cec',
1101 'timestamp': 1265032391,
1102 'upload_date': '20100201',
1103 'uploader': 'Heather',
1104 },
1105 },
1106 # NBC Sports vplayer embed
1107 {
1108 'url': 'http://www.riderfans.com/forum/showthread.php?121827-Freeman&s=e98fa1ea6dc08e886b1678d35212494a',
1109 'info_dict': {
1110 'id': 'ln7x1qSThw4k',
1111 'ext': 'flv',
1112 'title': "PFT Live: New leader in the 'new-look' defense",
1113 'description': 'md5:65a19b4bbfb3b0c0c5768bed1dfad74e',
1114 'uploader': 'NBCU-SPORTS',
1115 'upload_date': '20140107',
1116 'timestamp': 1389118457,
1117 },
1118 'skip': 'Invalid Page URL',
1119 },
1120 # NBC News embed
1121 {
1122 'url': 'http://www.vulture.com/2016/06/letterman-couldnt-care-less-about-late-night.html',
1123 'md5': '1aa589c675898ae6d37a17913cf68d66',
1124 'info_dict': {
1125 'id': 'x_dtl_oa_LettermanliftPR_160608',
1126 'ext': 'mp4',
1127 'title': 'David Letterman: A Preview',
1128 'description': 'A preview of Tom Brokaw\'s interview with David Letterman as part of the On Assignment series powered by Dateline. Airs Sunday June 12 at 7/6c.',
1129 'upload_date': '20160609',
1130 'timestamp': 1465431544,
1131 'uploader': 'NBCU-NEWS',
1132 },
1133 },
1134 # UDN embed
1135 {
1136 'url': 'https://video.udn.com/news/300346',
1137 'md5': 'fd2060e988c326991037b9aff9df21a6',
1138 'info_dict': {
1139 'id': '300346',
1140 'ext': 'mp4',
1141 'title': '中一中男師變性 全校師生力挺',
1142 'thumbnail': r're:^https?://.*\.jpg$',
1143 },
1144 'params': {
1145 # m3u8 download
1146 'skip_download': True,
1147 },
1148 'expected_warnings': ['Failed to parse JSON Expecting value'],
1149 },
1150 # Kinja embed
1151 {
1152 'url': 'http://www.clickhole.com/video/dont-understand-bitcoin-man-will-mumble-explanatio-2537',
1153 'info_dict': {
1154 'id': '106351',
1155 'ext': 'mp4',
1156 'title': 'Don’t Understand Bitcoin? This Man Will Mumble An Explanation At You',
1157 'description': 'Migrated from OnionStudios',
1158 'thumbnail': r're:^https?://.*\.jpe?g$',
1159 'uploader': 'clickhole',
1160 'upload_date': '20150527',
1161 'timestamp': 1432744860,
1162 }
1163 },
1164 # SnagFilms embed
1165 {
1166 'url': 'http://whilewewatch.blogspot.ru/2012/06/whilewewatch-whilewewatch-gripping.html',
1167 'info_dict': {
1168 'id': '74849a00-85a9-11e1-9660-123139220831',
1169 'ext': 'mp4',
1170 'title': '#whilewewatch',
1171 }
1172 },
1173 # AdobeTVVideo embed
1174 {
1175 'url': 'https://helpx.adobe.com/acrobat/how-to/new-experience-acrobat-dc.html?set=acrobat--get-started--essential-beginners',
1176 'md5': '43662b577c018ad707a63766462b1e87',
1177 'info_dict': {
1178 'id': '2456',
1179 'ext': 'mp4',
1180 'title': 'New experience with Acrobat DC',
1181 'description': 'New experience with Acrobat DC',
1182 'duration': 248.667,
1183 },
1184 },
1185 # Another form of arte.tv embed
1186 {
1187 'url': 'http://www.tv-replay.fr/redirection/09-04-16/arte-reportage-arte-11508975.html',
1188 'md5': '850bfe45417ddf221288c88a0cffe2e2',
1189 'info_dict': {
1190 'id': '030273-562_PLUS7-F',
1191 'ext': 'mp4',
1192 'title': 'ARTE Reportage - Nulle part, en France',
1193 'description': 'md5:e3a0e8868ed7303ed509b9e3af2b870d',
1194 'upload_date': '20160409',
1195 },
1196 },
1197 # Duplicated embedded video URLs
1198 {
1199 'url': 'http://www.hudl.com/athlete/2538180/highlights/149298443',
1200 'info_dict': {
1201 'id': '149298443_480_16c25b74_2',
1202 'ext': 'mp4',
1203 'title': 'vs. Blue Orange Spring Game',
1204 'uploader': 'www.hudl.com',
1205 },
1206 },
1207 # twitter:player:stream embed
1208 {
1209 'url': 'http://www.rtl.be/info/video/589263.aspx?CategoryID=288',
1210 'info_dict': {
1211 'id': 'master',
1212 'ext': 'mp4',
1213 'title': 'Une nouvelle espèce de dinosaure découverte en Argentine',
1214 'uploader': 'www.rtl.be',
1215 },
1216 'params': {
1217 # m3u8 downloads
1218 'skip_download': True,
1219 },
1220 },
1221 # twitter:player embed
1222 {
1223 'url': 'http://www.theatlantic.com/video/index/484130/what-do-black-holes-sound-like/',
1224 'md5': 'a3e0df96369831de324f0778e126653c',
1225 'info_dict': {
1226 'id': '4909620399001',
1227 'ext': 'mp4',
1228 'title': 'What Do Black Holes Sound Like?',
1229 'description': 'what do black holes sound like',
1230 'upload_date': '20160524',
1231 'uploader_id': '29913724001',
1232 'timestamp': 1464107587,
1233 'uploader': 'TheAtlantic',
1234 },
1235 'skip': 'Private Youtube video',
1236 },
1237 # Facebook <iframe> embed
1238 {
1239 'url': 'https://www.hostblogger.de/blog/archives/6181-Auto-jagt-Betonmischer.html',
1240 'md5': 'fbcde74f534176ecb015849146dd3aee',
1241 'info_dict': {
1242 'id': '599637780109885',
1243 'ext': 'mp4',
1244 'title': 'Facebook video #599637780109885',
1245 },
1246 },
1247 # Facebook <iframe> embed, plugin video
1248 {
1249 'url': 'http://5pillarsuk.com/2017/06/07/tariq-ramadan-disagrees-with-pr-exercise-by-imams-refusing-funeral-prayers-for-london-attackers/',
1250 'info_dict': {
1251 'id': '1754168231264132',
1252 'ext': 'mp4',
1253 'title': 'About the Imams and Religious leaders refusing to perform funeral prayers for...',
1254 'uploader': 'Tariq Ramadan (official)',
1255 'timestamp': 1496758379,
1256 'upload_date': '20170606',
1257 },
1258 'params': {
1259 'skip_download': True,
1260 },
1261 },
1262 # Facebook API embed
1263 {
1264 'url': 'http://www.lothype.com/blue-stars-2016-preview-standstill-full-show/',
1265 'md5': 'a47372ee61b39a7b90287094d447d94e',
1266 'info_dict': {
1267 'id': '10153467542406923',
1268 'ext': 'mp4',
1269 'title': 'Facebook video #10153467542406923',
1270 },
1271 },
1272 # Wordpress "YouTube Video Importer" plugin
1273 {
1274 'url': 'http://www.lothype.com/blue-devils-drumline-stanford-lot-2016/',
1275 'md5': 'd16797741b560b485194eddda8121b48',
1276 'info_dict': {
1277 'id': 'HNTXWDXV9Is',
1278 'ext': 'mp4',
1279 'title': 'Blue Devils Drumline Stanford lot 2016',
1280 'upload_date': '20160627',
1281 'uploader_id': 'GENOCIDE8GENERAL10',
1282 'uploader': 'cylus cyrus',
1283 },
1284 },
1285 {
1286 # video stored on custom kaltura server
1287 'url': 'http://www.expansion.com/multimedia/videos.html?media=EQcM30NHIPv',
1288 'md5': '537617d06e64dfed891fa1593c4b30cc',
1289 'info_dict': {
1290 'id': '0_1iotm5bh',
1291 'ext': 'mp4',
1292 'title': 'Elecciones británicas: 5 lecciones para Rajoy',
1293 'description': 'md5:435a89d68b9760b92ce67ed227055f16',
1294 'uploader_id': 'videos.expansion@el-mundo.net',
1295 'upload_date': '20150429',
1296 'timestamp': 1430303472,
1297 },
1298 'add_ie': ['Kaltura'],
1299 },
1300 {
1301 # multiple kaltura embeds, nsfw
1302 'url': 'https://www.quartier-rouge.be/prive/femmes/kamila-avec-video-jaime-sadomie.html',
1303 'info_dict': {
1304 'id': 'kamila-avec-video-jaime-sadomie',
1305 'title': "Kamila avec vídeo “J'aime sadomie”",
1306 },
1307 'playlist_count': 8,
1308 },
1309 {
1310 # Non-standard Vimeo embed
1311 'url': 'https://openclassrooms.com/courses/understanding-the-web',
1312 'md5': '64d86f1c7d369afd9a78b38cbb88d80a',
1313 'info_dict': {
1314 'id': '148867247',
1315 'ext': 'mp4',
1316 'title': 'Understanding the web - Teaser',
1317 'description': 'This is "Understanding the web - Teaser" by openclassrooms on Vimeo, the home for high quality videos and the people who love them.',
1318 'upload_date': '20151214',
1319 'uploader': 'OpenClassrooms',
1320 'uploader_id': 'openclassrooms',
1321 },
1322 'add_ie': ['Vimeo'],
1323 },
1324 {
1325 # generic vimeo embed that requires original URL passed as Referer
1326 'url': 'http://racing4everyone.eu/2016/07/30/formula-1-2016-round12-germany/',
1327 'only_matching': True,
1328 },
1329 {
1330 'url': 'https://support.arkena.com/display/PLAY/Ways+to+embed+your+video',
1331 'md5': 'b96f2f71b359a8ecd05ce4e1daa72365',
1332 'info_dict': {
1333 'id': 'b41dda37-d8e7-4d3f-b1b5-9a9db578bdfe',
1334 'ext': 'mp4',
1335 'title': 'Big Buck Bunny',
1336 'description': 'Royalty free test video',
1337 'timestamp': 1432816365,
1338 'upload_date': '20150528',
1339 'is_live': False,
1340 },
1341 'params': {
1342 'skip_download': True,
1343 },
1344 'add_ie': ['Arkena'],
1345 },
1346 {
1347 'url': 'http://nova.bg/news/view/2016/08/16/156543/%D0%BD%D0%B0-%D0%BA%D0%BE%D1%81%D1%8A%D0%BC-%D0%BE%D1%82-%D0%B2%D0%B7%D1%80%D0%B8%D0%B2-%D0%BE%D1%82%D1%86%D0%B5%D0%BF%D0%B8%D1%85%D0%B0-%D1%86%D1%8F%D0%BB-%D0%BA%D0%B2%D0%B0%D1%80%D1%82%D0%B0%D0%BB-%D0%B7%D0%B0%D1%80%D0%B0%D0%B4%D0%B8-%D0%B8%D0%B7%D1%82%D0%B8%D1%87%D0%B0%D0%BD%D0%B5-%D0%BD%D0%B0-%D0%B3%D0%B0%D0%B7-%D0%B2-%D0%BF%D0%BB%D0%BE%D0%B2%D0%B4%D0%B8%D0%B2/',
1348 'info_dict': {
1349 'id': '1c7141f46c',
1350 'ext': 'mp4',
1351 'title': 'НА КОСЪМ ОТ ВЗРИВ: Изтичане на газ на бензиностанция в Пловдив',
1352 },
1353 'params': {
1354 'skip_download': True,
1355 },
1356 'add_ie': ['Vbox7'],
1357 },
1358 {
1359 # DBTV embeds
1360 'url': 'http://www.dagbladet.no/2016/02/23/nyheter/nordlys/ski/troms/ver/43254897/',
1361 'info_dict': {
1362 'id': '43254897',
1363 'title': 'Etter ett års planlegging, klaffet endelig alt: - Jeg måtte ta en liten dans',
1364 },
1365 'playlist_mincount': 3,
1366 },
1367 {
1368 # Videa embeds
1369 'url': 'http://forum.dvdtalk.com/movie-talk/623756-deleted-magic-star-wars-ot-deleted-alt-scenes-docu-style.html',
1370 'info_dict': {
1371 'id': '623756-deleted-magic-star-wars-ot-deleted-alt-scenes-docu-style',
1372 'title': 'Deleted Magic - Star Wars: OT Deleted / Alt. Scenes Docu. Style - DVD Talk Forum',
1373 },
1374 'playlist_mincount': 2,
1375 },
1376 {
1377 # 20 minuten embed
1378 'url': 'http://www.20min.ch/schweiz/news/story/So-kommen-Sie-bei-Eis-und-Schnee-sicher-an-27032552',
1379 'info_dict': {
1380 'id': '523629',
1381 'ext': 'mp4',
1382 'title': 'So kommen Sie bei Eis und Schnee sicher an',
1383 'description': 'md5:117c212f64b25e3d95747e5276863f7d',
1384 },
1385 'params': {
1386 'skip_download': True,
1387 },
1388 'add_ie': ['TwentyMinuten'],
1389 },
1390 {
1391 # VideoPress embed
1392 'url': 'https://en.support.wordpress.com/videopress/',
1393 'info_dict': {
1394 'id': 'OcobLTqC',
1395 'ext': 'm4v',
1396 'title': 'IMG_5786',
1397 'timestamp': 1435711927,
1398 'upload_date': '20150701',
1399 },
1400 'params': {
1401 'skip_download': True,
1402 },
1403 'add_ie': ['VideoPress'],
1404 },
1405 {
1406 # Rutube embed
1407 'url': 'http://magazzino.friday.ru/videos/vipuski/kazan-2',
1408 'info_dict': {
1409 'id': '9b3d5bee0a8740bf70dfd29d3ea43541',
1410 'ext': 'flv',
1411 'title': 'Магаззино: Казань 2',
1412 'description': 'md5:99bccdfac2269f0e8fdbc4bbc9db184a',
1413 'uploader': 'Магаззино',
1414 'upload_date': '20170228',
1415 'uploader_id': '996642',
1416 },
1417 'params': {
1418 'skip_download': True,
1419 },
1420 'add_ie': ['Rutube'],
1421 },
1422 {
1423 # glomex:embed
1424 'url': 'https://www.skai.gr/news/world/iatrikos-syllogos-tourkias-to-turkovac-aplo-dialyma-erntogan-eiste-apateones-kai-pseytes',
1425 'info_dict': {
1426 'id': 'v-ch2nkhcirwc9-sf',
1427 'ext': 'mp4',
1428 'title': 'md5:786e1e24e06c55993cee965ef853a0c1',
1429 'description': 'md5:8b517a61d577efe7e36fde72fd535995',
1430 'timestamp': 1641885019,
1431 'upload_date': '20220111',
1432 'duration': 460000,
1433 'thumbnail': 'https://i3thumbs.glomex.com/dC1idjJwdndiMjRzeGwvMjAyMi8wMS8xMS8wNy8xMF8zNV82MWRkMmQ2YmU5ZTgyLmpwZw==/profile:player-960x540',
1434 },
1435 },
1436 {
1437 # megatvcom:embed
1438 'url': 'https://www.in.gr/2021/12/18/greece/apokalypsi-mega-poios-parelave-tin-ereyna-tsiodra-ek-merous-tis-kyvernisis-o-prothypourgos-telika-gnorize/',
1439 'info_dict': {
1440 'id': 'apokalypsi-mega-poios-parelave-tin-ereyna-tsiodra-ek-merous-tis-kyvernisis-o-prothypourgos-telika-gnorize',
1441 'title': 'md5:5e569cf996ec111057c2764ec272848f',
1442 },
1443 'playlist': [{
1444 'md5': '1afa26064ff00ccb91617957dbc73dc1',
1445 'info_dict': {
1446 'ext': 'mp4',
1447 'id': '564916',
1448 'display_id': 'md5:6cdf22d3a2e7bacb274b7295089a1770',
1449 'title': 'md5:33b9dd39584685b62873043670eb52a6',
1450 'description': 'md5:c1db7310f390518ac36dd69d947ef1a1',
1451 'timestamp': 1639753145,
1452 'upload_date': '20211217',
1453 'thumbnail': 'https://www.megatv.com/wp-content/uploads/2021/12/prezerakos-1024x597.jpg',
1454 },
1455 }, {
1456 'md5': '4a1c220695f1ef865a8b7966a53e2474',
1457 'info_dict': {
1458 'ext': 'mp4',
1459 'id': '564905',
1460 'display_id': 'md5:ead15695e485e649aed2b81ebd699b88',
1461 'title': 'md5:2b71fd54249a3ca34609fe39ae31c47b',
1462 'description': 'md5:c42e12f638d0a97d6de4508e2c4df982',
1463 'timestamp': 1639753047,
1464 'upload_date': '20211217',
1465 'thumbnail': 'https://www.megatv.com/wp-content/uploads/2021/12/tsiodras-mitsotakis-1024x545.jpg',
1466 },
1467 }]
1468 },
1469 {
1470 'url': 'https://www.ertnews.gr/video/manolis-goyalles-o-anthropos-piso-apo-ti-diadiktyaki-vasilopita/',
1471 'info_dict': {
1472 'id': '2022/tv/news-themata-ianouarios/20220114-apotis6-gouales-pita.mp4',
1473 'ext': 'mp4',
1474 'title': 'md5:df64f5b61c06d0e9556c0cdd5cf14464',
1475 'thumbnail': 'https://www.ert.gr/themata/photos/2021/20220114-apotis6-gouales-pita.jpg',
1476 },
1477 },
1478 {
1479 # ThePlatform embedded with whitespaces in URLs
1480 'url': 'http://www.golfchannel.com/topics/shows/golftalkcentral.htm',
1481 'only_matching': True,
1482 },
1483 {
1484 # Senate ISVP iframe https
1485 'url': 'https://www.hsgac.senate.gov/hearings/canadas-fast-track-refugee-plan-unanswered-questions-and-implications-for-us-national-security',
1486 'md5': 'fb8c70b0b515e5037981a2492099aab8',
1487 'info_dict': {
1488 'id': 'govtaff020316',
1489 'ext': 'mp4',
1490 'title': 'Integrated Senate Video Player',
1491 },
1492 'add_ie': ['SenateISVP'],
1493 },
1494 {
1495 # Limelight embeds (1 channel embed + 4 media embeds)
1496 'url': 'http://www.sedona.com/FacilitatorTraining2017',
1497 'info_dict': {
1498 'id': 'FacilitatorTraining2017',
1499 'title': 'Facilitator Training 2017',
1500 },
1501 'playlist_mincount': 5,
1502 },
1503 {
1504 # Limelight embed (LimelightPlayerUtil.embed)
1505 'url': 'https://tv5.ca/videos?v=xuu8qowr291ri',
1506 'info_dict': {
1507 'id': '95d035dc5c8a401588e9c0e6bd1e9c92',
1508 'ext': 'mp4',
1509 'title': '07448641',
1510 'timestamp': 1499890639,
1511 'upload_date': '20170712',
1512 },
1513 'params': {
1514 'skip_download': True,
1515 },
1516 'add_ie': ['LimelightMedia'],
1517 },
1518 {
1519 'url': 'http://kron4.com/2017/04/28/standoff-with-walnut-creek-murder-suspect-ends-with-arrest/',
1520 'info_dict': {
1521 'id': 'standoff-with-walnut-creek-murder-suspect-ends-with-arrest',
1522 'title': 'Standoff with Walnut Creek murder suspect ends',
1523 'description': 'md5:3ccc48a60fc9441eeccfc9c469ebf788',
1524 },
1525 'playlist_mincount': 4,
1526 },
1527 {
1528 # WashingtonPost embed
1529 'url': 'http://www.vanityfair.com/hollywood/2017/04/donald-trump-tv-pitches',
1530 'info_dict': {
1531 'id': '8caf6e88-d0ec-11e5-90d3-34c2c42653ac',
1532 'ext': 'mp4',
1533 'title': "No one has seen the drama series based on Trump's life \u2014 until now",
1534 'description': 'Donald Trump wanted a weekly TV drama based on his life. It never aired. But The Washington Post recently obtained a scene from the pilot script — and enlisted actors.',
1535 'timestamp': 1455216756,
1536 'uploader': 'The Washington Post',
1537 'upload_date': '20160211',
1538 },
1539 'add_ie': ['WashingtonPost'],
1540 },
1541 {
1542 # JOJ.sk embeds
1543 'url': 'https://www.noviny.sk/slovensko/238543-slovenskom-sa-prehnala-vlna-silnych-burok',
1544 'info_dict': {
1545 'id': '238543-slovenskom-sa-prehnala-vlna-silnych-burok',
1546 'title': 'Slovenskom sa prehnala vlna silných búrok',
1547 },
1548 'playlist_mincount': 5,
1549 'add_ie': ['Joj'],
1550 },
1551 {
1552 # AMP embed (see https://www.ampproject.org/docs/reference/components/amp-video)
1553 'url': 'https://tvrain.ru/amp/418921/',
1554 'md5': 'cc00413936695987e8de148b67d14f1d',
1555 'info_dict': {
1556 'id': '418921',
1557 'ext': 'mp4',
1558 'title': 'Стас Намин: «Мы нарушили девственность Кремля»',
1559 },
1560 },
1561 {
1562 # vzaar embed
1563 'url': 'http://help.vzaar.com/article/165-embedding-video',
1564 'md5': '7e3919d9d2620b89e3e00bec7fe8c9d4',
1565 'info_dict': {
1566 'id': '8707641',
1567 'ext': 'mp4',
1568 'title': 'Building A Business Online: Principal Chairs Q & A',
1569 },
1570 },
1571 {
1572 # multiple HTML5 videos on one page
1573 'url': 'https://www.paragon-software.com/home/rk-free/keyscenarios.html',
1574 'info_dict': {
1575 'id': 'keyscenarios',
1576 'title': 'Rescue Kit 14 Free Edition - Getting started',
1577 },
1578 'playlist_count': 4,
1579 },
1580 {
1581 # vshare embed
1582 'url': 'https://youtube-dl-demo.neocities.org/vshare.html',
1583 'md5': '17b39f55b5497ae8b59f5fbce8e35886',
1584 'info_dict': {
1585 'id': '0f64ce6',
1586 'title': 'vl14062007715967',
1587 'ext': 'mp4',
1588 }
1589 },
1590 {
1591 'url': 'http://www.heidelberg-laureate-forum.org/blog/video/lecture-friday-september-23-2016-sir-c-antony-r-hoare/',
1592 'md5': 'aecd089f55b1cb5a59032cb049d3a356',
1593 'info_dict': {
1594 'id': '90227f51a80c4d8f86c345a7fa62bd9a1d',
1595 'ext': 'mp4',
1596 'title': 'Lecture: Friday, September 23, 2016 - Sir Tony Hoare',
1597 'description': 'md5:5a51db84a62def7b7054df2ade403c6c',
1598 'timestamp': 1474354800,
1599 'upload_date': '20160920',
1600 }
1601 },
1602 {
1603 'url': 'http://www.kidzworld.com/article/30935-trolls-the-beat-goes-on-interview-skylar-astin-and-amanda-leighton',
1604 'info_dict': {
1605 'id': '1731611',
1606 'ext': 'mp4',
1607 'title': 'Official Trailer | TROLLS: THE BEAT GOES ON!',
1608 'description': 'md5:eb5f23826a027ba95277d105f248b825',
1609 'timestamp': 1516100691,
1610 'upload_date': '20180116',
1611 },
1612 'params': {
1613 'skip_download': True,
1614 },
1615 'add_ie': ['SpringboardPlatform'],
1616 },
1617 {
1618 'url': 'https://www.yapfiles.ru/show/1872528/690b05d3054d2dbe1e69523aa21bb3b1.mp4.html',
1619 'info_dict': {
1620 'id': 'vMDE4NzI1Mjgt690b',
1621 'ext': 'mp4',
1622 'title': 'Котята',
1623 },
1624 'add_ie': ['YapFiles'],
1625 'params': {
1626 'skip_download': True,
1627 },
1628 },
1629 {
1630 # CloudflareStream embed
1631 'url': 'https://www.cloudflare.com/products/cloudflare-stream/',
1632 'info_dict': {
1633 'id': '31c9291ab41fac05471db4e73aa11717',
1634 'ext': 'mp4',
1635 'title': '31c9291ab41fac05471db4e73aa11717',
1636 },
1637 'add_ie': ['CloudflareStream'],
1638 'params': {
1639 'skip_download': True,
1640 },
1641 },
1642 {
1643 # PeerTube embed
1644 'url': 'https://joinpeertube.org/fr/home/',
1645 'info_dict': {
1646 'id': 'home',
1647 'title': 'Reprenez le contrôle de vos vidéos ! #JoinPeertube',
1648 },
1649 'playlist_count': 2,
1650 },
1651 {
1652 # Indavideo embed
1653 'url': 'https://streetkitchen.hu/receptek/igy_kell_otthon_hamburgert_sutni/',
1654 'info_dict': {
1655 'id': '1693903',
1656 'ext': 'mp4',
1657 'title': 'Így kell otthon hamburgert sütni',
1658 'description': 'md5:f5a730ecf900a5c852e1e00540bbb0f7',
1659 'timestamp': 1426330212,
1660 'upload_date': '20150314',
1661 'uploader': 'StreetKitchen',
1662 'uploader_id': '546363',
1663 },
1664 'add_ie': ['IndavideoEmbed'],
1665 'params': {
1666 'skip_download': True,
1667 },
1668 },
1669 {
1670 # APA embed via JWPlatform embed
1671 'url': 'http://www.vol.at/blue-man-group/5593454',
1672 'info_dict': {
1673 'id': 'jjv85FdZ',
1674 'ext': 'mp4',
1675 'title': '"Blau ist mysteriös": Die Blue Man Group im Interview',
1676 'description': 'md5:d41d8cd98f00b204e9800998ecf8427e',
1677 'thumbnail': r're:^https?://.*\.jpg$',
1678 'duration': 254,
1679 'timestamp': 1519211149,
1680 'upload_date': '20180221',
1681 },
1682 'params': {
1683 'skip_download': True,
1684 },
1685 },
1686 {
1687 'url': 'http://share-videos.se/auto/video/83645793?uid=13',
1688 'md5': 'b68d276de422ab07ee1d49388103f457',
1689 'info_dict': {
1690 'id': '83645793',
1691 'title': 'Lock up and get excited',
1692 'ext': 'mp4'
1693 },
1694 'skip': 'TODO: fix nested playlists processing in tests',
1695 },
1696 {
1697 # Viqeo embeds
1698 'url': 'https://viqeo.tv/',
1699 'info_dict': {
1700 'id': 'viqeo',
1701 'title': 'All-new video platform',
1702 },
1703 'playlist_count': 6,
1704 },
1705 # {
1706 # # Zype embed
1707 # 'url': 'https://www.cookscountry.com/episode/554-smoky-barbecue-favorites',
1708 # 'info_dict': {
1709 # 'id': '5b400b834b32992a310622b9',
1710 # 'ext': 'mp4',
1711 # 'title': 'Smoky Barbecue Favorites',
1712 # 'thumbnail': r're:^https?://.*\.jpe?g',
1713 # 'description': 'md5:5ff01e76316bd8d46508af26dc86023b',
1714 # 'upload_date': '20170909',
1715 # 'timestamp': 1504915200,
1716 # },
1717 # 'add_ie': [ZypeIE.ie_key()],
1718 # 'params': {
1719 # 'skip_download': True,
1720 # },
1721 # },
1722 {
1723 # videojs embed
1724 'url': 'https://video.sibnet.ru/shell.php?videoid=3422904',
1725 'info_dict': {
1726 'id': 'shell',
1727 'ext': 'mp4',
1728 'title': 'Доставщик пиццы спросил разрешения сыграть на фортепиано',
1729 'description': 'md5:89209cdc587dab1e4a090453dbaa2cb1',
1730 'thumbnail': r're:^https?://.*\.jpg$',
1731 },
1732 'params': {
1733 'skip_download': True,
1734 },
1735 'expected_warnings': ['Failed to download MPD manifest'],
1736 },
1737 {
1738 # DailyMotion embed with DM.player
1739 'url': 'https://www.beinsports.com/us/copa-del-rey/video/the-locker-room-valencia-beat-barca-in-copa/1203804',
1740 'info_dict': {
1741 'id': 'k6aKkGHd9FJs4mtJN39',
1742 'ext': 'mp4',
1743 'title': 'The Locker Room: Valencia Beat Barca In Copa del Rey Final',
1744 'description': 'This video is private.',
1745 'uploader_id': 'x1jf30l',
1746 'uploader': 'beIN SPORTS USA',
1747 'upload_date': '20190528',
1748 'timestamp': 1559062971,
1749 },
1750 'params': {
1751 'skip_download': True,
1752 },
1753 },
1754 {
1755 # tvopengr:embed
1756 'url': 'https://www.ethnos.gr/World/article/190604/hparosiaxekinoynoisynomiliessthgeneyhmethskiatoypolemoypanoapothnoykrania',
1757 'md5': 'eb0c3995d0a6f18f6538c8e057865d7d',
1758 'info_dict': {
1759 'id': '101119',
1760 'ext': 'mp4',
1761 'display_id': 'oikarpoitondiapragmateyseonhparosias',
1762 'title': 'md5:b979f4d640c568617d6547035528a149',
1763 'description': 'md5:e54fc1977c7159b01cc11cd7d9d85550',
1764 'timestamp': 1641772800,
1765 'upload_date': '20220110',
1766 'thumbnail': 'https://opentv-static.siliconweb.com/imgHandler/1920/70bc39fa-895b-4918-a364-c39d2135fc6d.jpg',
1767
1768 }
1769 },
1770 {
1771 # blogger embed
1772 'url': 'https://blog.tomeuvizoso.net/2019/01/a-panfrost-milestone.html',
1773 'md5': 'f1bc19b6ea1b0fd1d81e84ca9ec467ac',
1774 'info_dict': {
1775 'id': 'BLOGGER-video-3c740e3a49197e16-796',
1776 'ext': 'mp4',
1777 'title': 'Blogger',
1778 'thumbnail': r're:^https?://.*',
1779 },
1780 },
1781 # {
1782 # # TODO: find another test
1783 # # http://schema.org/VideoObject
1784 # 'url': 'https://flipagram.com/f/nyvTSJMKId',
1785 # 'md5': '888dcf08b7ea671381f00fab74692755',
1786 # 'info_dict': {
1787 # 'id': 'nyvTSJMKId',
1788 # 'ext': 'mp4',
1789 # 'title': 'Flipagram by sjuria101 featuring Midnight Memories by One Direction',
1790 # 'description': '#love for cats.',
1791 # 'timestamp': 1461244995,
1792 # 'upload_date': '20160421',
1793 # },
1794 # 'params': {
1795 # 'force_generic_extractor': True,
1796 # },
1797 # },
1798 {
1799 # VHX Embed
1800 'url': 'https://demo.vhx.tv/category-c/videos/file-example-mp4-480-1-5mg-copy',
1801 'info_dict': {
1802 'id': '858208',
1803 'ext': 'mp4',
1804 'title': 'Untitled',
1805 'uploader_id': 'user80538407',
1806 'uploader': 'OTT Videos',
1807 },
1808 },
1809 {
1810 # ArcPublishing PoWa video player
1811 'url': 'https://www.adn.com/politics/2020/11/02/video-senate-candidates-campaign-in-anchorage-on-eve-of-election-day/',
1812 'md5': 'b03b2fac8680e1e5a7cc81a5c27e71b3',
1813 'info_dict': {
1814 'id': '8c99cb6e-b29c-4bc9-9173-7bf9979225ab',
1815 'ext': 'mp4',
1816 'title': 'Senate candidates wave to voters on Anchorage streets',
1817 'description': 'md5:91f51a6511f090617353dc720318b20e',
1818 'timestamp': 1604378735,
1819 'upload_date': '20201103',
1820 'duration': 1581,
1821 },
1822 },
1823 {
1824 # MyChannels SDK embed
1825 # https://www.24kitchen.nl/populair/deskundige-dit-waarom-sommigen-gevoelig-zijn-voor-voedselallergieen
1826 'url': 'https://www.demorgen.be/nieuws/burgemeester-rotterdam-richt-zich-in-videoboodschap-tot-relschoppers-voelt-het-goed~b0bcfd741/',
1827 'md5': '90c0699c37006ef18e198c032d81739c',
1828 'info_dict': {
1829 'id': '194165',
1830 'ext': 'mp4',
1831 'title': 'Burgemeester Aboutaleb spreekt relschoppers toe',
1832 'timestamp': 1611740340,
1833 'upload_date': '20210127',
1834 'duration': 159,
1835 },
1836 },
1837 {
1838 # Simplecast player embed
1839 'url': 'https://www.bio.org/podcast',
1840 'info_dict': {
1841 'id': 'podcast',
1842 'title': 'I AM BIO Podcast | BIO',
1843 },
1844 'playlist_mincount': 52,
1845 }, {
1846 # WimTv embed player
1847 'url': 'http://www.msmotor.tv/wearefmi-pt-2-2021/',
1848 'info_dict': {
1849 'id': 'wearefmi-pt-2-2021',
1850 'title': '#WEAREFMI – PT.2 – 2021 – MsMotorTV',
1851 },
1852 'playlist_count': 1,
1853 }, {
1854 # KVS Player
1855 'url': 'https://www.kvs-demo.com/videos/105/kelis-4th-of-july/',
1856 'info_dict': {
1857 'id': '105',
1858 'display_id': 'kelis-4th-of-july',
1859 'ext': 'mp4',
1860 'title': 'Kelis - 4th Of July',
1861 'description': 'Kelis - 4th Of July',
1862 'thumbnail': r're:https://(?:www\.)?kvs-demo.com/contents/videos_screenshots/0/105/preview.jpg',
1863 },
1864 'params': {
1865 'skip_download': True,
1866 },
1867 'expected_warnings': ['Untested major version'],
1868 }, {
1869 # KVS Player
1870 'url': 'https://www.kvs-demo.com/embed/105/',
1871 'info_dict': {
1872 'id': '105',
1873 'display_id': 'kelis-4th-of-july',
1874 'ext': 'mp4',
1875 'title': 'Kelis - 4th Of July / Embed Player',
1876 'thumbnail': r're:https://(?:www\.)?kvs-demo.com/contents/videos_screenshots/0/105/preview.jpg',
1877 },
1878 'params': {
1879 'skip_download': True,
1880 },
1881 }, {
1882 'url': 'https://youix.com/video/leningrad-zoj/',
1883 'md5': '94f96ba95706dc3880812b27b7d8a2b8',
1884 'info_dict': {
1885 'id': '18485',
1886 'display_id': 'leningrad-zoj',
1887 'ext': 'mp4',
1888 'title': 'Клип: Ленинград - ЗОЖ скачать, смотреть онлайн | Youix.com',
1889 'thumbnail': r're:https://youix.com/contents/videos_screenshots/18000/18485/preview(?:_480x320_youix_com.mp4)?\.jpg',
1890 },
1891 }, {
1892 # KVS Player
1893 'url': 'https://youix.com/embed/18485',
1894 'md5': '94f96ba95706dc3880812b27b7d8a2b8',
1895 'info_dict': {
1896 'id': '18485',
1897 'display_id': 'leningrad-zoj',
1898 'ext': 'mp4',
1899 'title': 'Ленинград - ЗОЖ',
1900 'thumbnail': r're:https://youix.com/contents/videos_screenshots/18000/18485/preview(?:_480x320_youix_com.mp4)?\.jpg',
1901 },
1902 }, {
1903 # KVS Player
1904 'url': 'https://bogmedia.org/videos/21217/40-nochey-40-nights-2016/',
1905 'md5': '94166bdb26b4cb1fb9214319a629fc51',
1906 'info_dict': {
1907 'id': '21217',
1908 'display_id': '40-nochey-2016',
1909 'ext': 'mp4',
1910 'title': '40 ночей (2016) - BogMedia.org',
1911 'description': 'md5:4e6d7d622636eb7948275432eb256dc3',
1912 'thumbnail': 'https://bogmedia.org/contents/videos_screenshots/21000/21217/preview_480p.mp4.jpg',
1913 },
1914 },
1915 {
1916 # KVS Player (for sites that serve kt_player.js via non-https urls)
1917 'url': 'http://www.camhub.world/embed/389508',
1918 'md5': 'fbe89af4cfb59c8fd9f34a202bb03e32',
1919 'info_dict': {
1920 'id': '389508',
1921 'display_id': 'syren-de-mer-onlyfans-05-07-2020have-a-happy-safe-holiday5f014e68a220979bdb8cd-source',
1922 'ext': 'mp4',
1923 'title': 'Syren De Mer onlyfans_05-07-2020Have_a_happy_safe_holiday5f014e68a220979bdb8cd_source / Embed плеер',
1924 'thumbnail': r're:https?://www\.camhub\.world/contents/videos_screenshots/389000/389508/preview\.mp4\.jpg',
1925 },
1926 },
1927 {
1928 # Reddit-hosted video that will redirect and be processed by RedditIE
1929 # Redirects to https://www.reddit.com/r/videos/comments/6rrwyj/that_small_heart_attack/
1930 'url': 'https://v.redd.it/zv89llsvexdz',
1931 'md5': '87f5f02f6c1582654146f830f21f8662',
1932 'info_dict': {
1933 'id': 'zv89llsvexdz',
1934 'ext': 'mp4',
1935 'timestamp': 1501941939.0,
1936 'title': 'That small heart attack.',
1937 'upload_date': '20170805',
1938 'uploader': 'Antw87'
1939 }
1940 },
1941 {
1942 # 1080p Reddit-hosted video that will redirect and be processed by RedditIE
1943 'url': 'https://v.redd.it/33hgok7dfbz71/',
1944 'md5': '7a1d587940242c9bb3bd6eb320b39258',
1945 'info_dict': {
1946 'id': '33hgok7dfbz71',
1947 'ext': 'mp4',
1948 'title': "The game Didn't want me to Knife that Guy I guess",
1949 'uploader': 'paraf1ve',
1950 'timestamp': 1636788683.0,
1951 'upload_date': '20211113'
1952 }
1953 },
1954 {
1955 # MainStreaming player
1956 'url': 'https://www.lactv.it/2021/10/03/lac-news24-la-settimana-03-10-2021/',
1957 'info_dict': {
1958 'id': 'EUlZfGWkGpOd',
1959 'title': 'La Settimana ',
1960 'description': '03 Ottobre ore 02:00',
1961 'ext': 'mp4',
1962 'live_status': 'not_live',
1963 'thumbnail': r're:https?://[A-Za-z0-9-]*\.msvdn.net/image/\w+/poster',
1964 'duration': 1512
1965 }
1966 },
1967 {
1968 # Multiple gfycat iframe embeds
1969 'url': 'https://www.gezip.net/bbs/board.php?bo_table=entertaine&wr_id=613422',
1970 'info_dict': {
1971 'title': '재이, 윤, 세은 황금 드레스를 입고 빛난다',
1972 'id': 'board'
1973 },
1974 'playlist_count': 8,
1975 },
1976 {
1977 # Multiple gfycat gifs (direct links)
1978 'url': 'https://www.gezip.net/bbs/board.php?bo_table=entertaine&wr_id=612199',
1979 'info_dict': {
1980 'title': '옳게 된 크롭 니트 스테이씨 아이사',
1981 'id': 'board'
1982 },
1983 'playlist_count': 6
1984 },
1985 {
1986 # Multiple gfycat embeds, with uppercase "IFR" in urls
1987 'url': 'https://kkzz.kr/?vid=2295',
1988 'info_dict': {
1989 'title': '지방시 앰버서더 에스파 카리나 움짤',
1990 'id': '?vid=2295'
1991 },
1992 'playlist_count': 9
1993 },
1994 {
1995 # Panopto embeds
1996 'url': 'https://www.monash.edu/learning-teaching/teachhq/learning-technologies/panopto/how-to/insert-a-quiz-into-a-panopto-video',
1997 'info_dict': {
1998 'ext': 'mp4',
1999 'id': '0bd3f16c-824a-436a-8486-ac5900693aef',
2000 'title': 'Quizzes in Panopto',
2001 },
2002 },
2003 {
2004 # Ruutu embed
2005 'url': 'https://www.nelonen.fi/ohjelmat/madventures-suomi/2160731-riku-ja-tunna-lahtevat-peurajahtiin-tv-sta-tutun-biologin-kanssa---metsastysreissu-huipentuu-kasvissyojan-painajaiseen',
2006 'md5': 'a2513a98d3496099e6eced40f7e6a14b',
2007 'info_dict': {
2008 'id': '4044426',
2009 'ext': 'mp4',
2010 'title': 'Riku ja Tunna lähtevät peurajahtiin tv:stä tutun biologin kanssa – metsästysreissu huipentuu kasvissyöjän painajaiseen!',
2011 'thumbnail': r're:^https?://.+\.jpg$',
2012 'duration': 108,
2013 'series': 'Madventures Suomi',
2014 'description': 'md5:aa55b44bd06a1e337a6f1d0b46507381',
2015 'categories': ['Matkailu', 'Elämäntyyli'],
2016 'age_limit': 0,
2017 'upload_date': '20220308',
2018 },
2019 },
2020 {
2021 # Multiple Ruutu embeds
2022 'url': 'https://www.hs.fi/kotimaa/art-2000008762560.html',
2023 'info_dict': {
2024 'title': 'Koronavirus | Epidemiahuippu voi olla Suomessa ohi, mutta koronaviruksen poistamista yleisvaarallisten tautien joukosta harkitaan vasta syksyllä',
2025 'id': 'art-2000008762560'
2026 },
2027 'playlist_count': 3
2028 },
2029 {
2030 # Ruutu embed in hs.fi with a single video
2031 'url': 'https://www.hs.fi/kotimaa/art-2000008793421.html',
2032 'md5': 'f8964e65d8fada6e8a562389bf366bb4',
2033 'info_dict': {
2034 'id': '4081841',
2035 'ext': 'mp4',
2036 'title': 'Puolustusvoimat siirsi panssariajoneuvoja harjoituksiin Niinisaloon 2.5.2022',
2037 'thumbnail': r're:^https?://.+\.jpg$',
2038 'duration': 138,
2039 'age_limit': 0,
2040 'upload_date': '20220504',
2041 },
2042 },
2043 {
2044 # Webpage contains double BOM
2045 'url': 'https://www.filmarkivet.se/movies/paris-d-moll/',
2046 'md5': 'df02cadc719dcc63d43288366f037754',
2047 'info_dict': {
2048 'id': 'paris-d-moll',
2049 'ext': 'mp4',
2050 'upload_date': '20220518',
2051 'title': 'Paris d-moll',
2052 'description': 'md5:319e37ea5542293db37e1e13072fe330',
2053 'thumbnail': 'https://www.filmarkivet.se/wp-content/uploads/parisdmoll2.jpg',
2054 'timestamp': 1652833414,
2055 'age_limit': 0,
2056 }
2057 },
2058 {
2059 'url': 'https://www.mollymovieclub.com/p/interstellar?s=r#details',
2060 'md5': '198bde8bed23d0b23c70725c83c9b6d9',
2061 'info_dict': {
2062 'id': '53602801',
2063 'ext': 'mpga',
2064 'title': 'Interstellar',
2065 'description': 'Listen now | Episode One',
2066 'thumbnail': 'md5:c30d9c83f738e16d8551d7219d321538',
2067 'uploader': 'Molly Movie Club',
2068 'uploader_id': '839621',
2069 },
2070 },
2071 {
2072 'url': 'https://www.blockedandreported.org/p/episode-117-lets-talk-about-depp?s=r',
2073 'md5': 'c0cc44ee7415daeed13c26e5b56d6aa0',
2074 'info_dict': {
2075 'id': '57962052',
2076 'ext': 'mpga',
2077 'title': 'md5:855b2756f0ee10f6723fa00b16266f8d',
2078 'description': 'md5:fe512a5e94136ad260c80bde00ea4eef',
2079 'thumbnail': 'md5:2218f27dfe517bb5ac16c47d0aebac59',
2080 'uploader': 'Blocked and Reported',
2081 'uploader_id': '500230',
2082 },
2083 },
2084 {
2085 'url': 'https://www.skimag.com/video/ski-people-1980/',
2086 'md5': '022a7e31c70620ebec18deeab376ee03',
2087 'info_dict': {
2088 'id': 'YTmgRiNU',
2089 'ext': 'mp4',
2090 'title': '1980 Ski People',
2091 'timestamp': 1610407738,
2092 'description': 'md5:cf9c3d101452c91e141f292b19fe4843',
2093 'thumbnail': 'https://cdn.jwplayer.com/v2/media/YTmgRiNU/poster.jpg?width=720',
2094 'duration': 5688.0,
2095 'upload_date': '20210111',
2096 }
2097 },
2098 {
2099 'note': 'JSON LD with multiple @type',
2100 'url': 'https://www.nu.nl/280161/video/hoe-een-bladvlo-dit-verwoestende-japanse-onkruid-moet-vernietigen.html',
2101 'md5': 'c7949f34f57273013fb7ccb1156393db',
2102 'info_dict': {
2103 'id': 'ipy2AcGL',
2104 'ext': 'mp4',
2105 'description': 'md5:6a9d644bab0dc2dc06849c2505d8383d',
2106 'thumbnail': r're:https://media\.nu\.nl/m/.+\.jpg',
2107 'title': 'Hoe een bladvlo dit verwoestende Japanse onkruid moet vernietigen',
2108 'timestamp': 1586577474,
2109 'upload_date': '20200411',
2110 'age_limit': 0,
2111 'duration': 111.0,
2112 }
2113 },
2114 {
2115 'note': 'JSON LD with unexpected data type',
2116 'url': 'https://www.autoweek.nl/autotests/artikel/porsche-911-gt3-rs-rij-impressie-2/',
2117 'info_dict': {
2118 'id': 'porsche-911-gt3-rs-rij-impressie-2',
2119 'ext': 'mp4',
2120 'title': 'Test: Porsche 911 GT3 RS',
2121 'description': 'Je ziet het niet, maar het is er wel. Downforce, hebben we het dan over. En in de nieuwe Porsche 911 GT3 RS is er zelfs heel veel downforce.',
2122 'timestamp': 1664920902,
2123 'upload_date': '20221004',
2124 'thumbnail': r're:^https://media.autoweek.nl/m/.+\.jpg$',
2125 'age_limit': 0,
2126 'direct': True,
2127 }
2128 },
2129 {
2130 'note': 'server returns data in brotli compression by default if `accept-encoding: *` is specified.',
2131 'url': 'https://www.extra.cz/cauky-lidi-70-dil-babis-predstavil-pohadky-prymulanek-nebo-andrejovy-nove-saty-ac867',
2132 'info_dict': {
2133 'id': 'cauky-lidi-70-dil-babis-predstavil-pohadky-prymulanek-nebo-andrejovy-nove-saty-ac867',
2134 'ext': 'mp4',
2135 'title': 'čauky lidi 70 finall',
2136 'description': 'čauky lidi 70 finall',
2137 'thumbnail': 'h',
2138 'upload_date': '20220606',
2139 'timestamp': 1654513791,
2140 'duration': 318.0,
2141 'direct': True,
2142 'age_limit': 0,
2143 },
2144 },
2145 {
2146 'note': 'JW Player embed with unicode-escape sequences in URL',
2147 'url': 'https://www.medici.tv/en/concerts/lahav-shani-mozart-mahler-israel-philharmonic-abu-dhabi-classics',
2148 'info_dict': {
2149 'id': 'm',
2150 'ext': 'mp4',
2151 'title': 'Lahav Shani conducts the Israel Philharmonic\'s first-ever concert in Abu Dhabi',
2152 'description': 'Mahler\'s ',
2153 'uploader': 'www.medici.tv',
2154 'age_limit': 0,
2155 'thumbnail': r're:^https?://.+\.jpg',
2156 },
2157 'params': {
2158 'skip_download': True,
2159 },
2160 },
2161 {
2162 'url': 'https://shooshtime.com/videos/284002/just-out-of-the-shower-joi/',
2163 'md5': 'e2f0a4c329f7986280b7328e24036d60',
2164 'info_dict': {
2165 'id': '284002',
2166 'display_id': 'just-out-of-the-shower-joi',
2167 'ext': 'mp4',
2168 'title': 'Just Out Of The Shower JOI - Shooshtime',
2169 'thumbnail': 'https://i.shoosh.co/contents/videos_screenshots/284000/284002/preview.mp4.jpg',
2170 'height': 720,
2171 'age_limit': 18,
2172 },
2173 },
2174 {
2175 'note': 'Live HLS direct link',
2176 'url': 'https://d18j67ugtrocuq.cloudfront.net/out/v1/2767aec339144787926bd0322f72c6e9/index.m3u8',
2177 'info_dict': {
2178 'id': 'index',
2179 'title': r're:index',
2180 'ext': 'mp4',
2181 'live_status': 'is_live',
2182 },
2183 'params': {
2184 'skip_download': 'm3u8',
2185 },
2186 },
2187 {
2188 'note': 'Video.js VOD HLS',
2189 'url': 'https://gist.githubusercontent.com/bashonly/2aae0862c50f4a4b84f220c315767208/raw/e3380d413749dabbe804c9c2d8fd9a45142475c7/videojs_hls_test.html',
2190 'info_dict': {
2191 'id': 'videojs_hls_test',
2192 'title': 'video',
2193 'ext': 'mp4',
2194 'age_limit': 0,
2195 'duration': 1800,
2196 },
2197 'params': {
2198 'skip_download': 'm3u8',
2199 },
2200 },
2201 ]
2202
2203 def report_following_redirect(self, new_url):
2204 """Report information extraction."""
2205 self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
2206
2207 def report_detected(self, name, num=1, note=None):
2208 if num > 1:
2209 name += 's'
2210 elif not num:
2211 return
2212 else:
2213 num = 'a'
2214
2215 self._downloader.write_debug(f'Identified {num} {name}{format_field(note, None, "; %s")}')
2216
2217 def _extra_manifest_info(self, info, manifest_url):
2218 fragment_query = self._configuration_arg('fragment_query', [None], casesense=True)[0]
2219 if fragment_query is not None:
2220 info['extra_param_to_segment_url'] = (
2221 urllib.parse.urlparse(fragment_query).query or fragment_query
2222 or urllib.parse.urlparse(manifest_url).query or None)
2223
2224 hex_or_none = lambda x: x if re.fullmatch(r'(0x)?[\da-f]+', x, re.IGNORECASE) else None
2225 info['hls_aes'] = traverse_obj(self._configuration_arg('hls_key', casesense=True), {
2226 'uri': (0, {url_or_none}), 'key': (0, {hex_or_none}), 'iv': (1, {hex_or_none}),
2227 }) or None
2228
2229 variant_query = self._configuration_arg('variant_query', [None], casesense=True)[0]
2230 if variant_query is not None:
2231 query = urllib.parse.parse_qs(
2232 urllib.parse.urlparse(variant_query).query or variant_query
2233 or urllib.parse.urlparse(manifest_url).query)
2234 for fmt in self._downloader._get_formats(info):
2235 fmt['url'] = update_url_query(fmt['url'], query)
2236
2237 # Attempt to detect live HLS or set VOD duration
2238 m3u8_format = next((f for f in self._downloader._get_formats(info)
2239 if determine_protocol(f) == 'm3u8_native'), None)
2240 if m3u8_format:
2241 is_live = self._configuration_arg('is_live', [None])[0]
2242 if is_live is not None:
2243 info['live_status'] = 'not_live' if is_live == 'false' else 'is_live'
2244 return
2245 headers = m3u8_format.get('http_headers') or info.get('http_headers')
2246 duration = self._extract_m3u8_vod_duration(
2247 m3u8_format['url'], info.get('id'), note='Checking m3u8 live status',
2248 errnote='Failed to download m3u8 media playlist', headers=headers)
2249 if not duration:
2250 info['live_status'] = 'is_live'
2251 info['duration'] = info.get('duration') or duration
2252
2253 def _extract_rss(self, url, video_id, doc):
2254 NS_MAP = {
2255 'itunes': 'http://www.itunes.com/dtds/podcast-1.0.dtd',
2256 }
2257
2258 entries = []
2259 for it in doc.findall('./channel/item'):
2260 next_url = next(
2261 (e.attrib.get('url') for e in it.findall('./enclosure')),
2262 xpath_text(it, 'link', fatal=False))
2263 if not next_url:
2264 continue
2265
2266 guid = try_call(lambda: it.find('guid').text)
2267 if guid:
2268 next_url = smuggle_url(next_url, {'force_videoid': guid})
2269
2270 def itunes(key):
2271 return xpath_text(it, xpath_with_ns(f'./itunes:{key}', NS_MAP), default=None)
2272
2273 entries.append({
2274 '_type': 'url_transparent',
2275 'url': next_url,
2276 'title': try_call(lambda: it.find('title').text),
2277 'description': xpath_text(it, 'description', default=None),
2278 'timestamp': unified_timestamp(xpath_text(it, 'pubDate', default=None)),
2279 'duration': parse_duration(itunes('duration')),
2280 'thumbnail': url_or_none(xpath_attr(it, xpath_with_ns('./itunes:image', NS_MAP), 'href')),
2281 'episode': itunes('title'),
2282 'episode_number': int_or_none(itunes('episode')),
2283 'season_number': int_or_none(itunes('season')),
2284 'age_limit': {'true': 18, 'yes': 18, 'false': 0, 'no': 0}.get((itunes('explicit') or '').lower()),
2285 })
2286
2287 return {
2288 '_type': 'playlist',
2289 'id': url,
2290 'title': try_call(lambda: doc.find('./channel/title').text),
2291 'description': try_call(lambda: doc.find('./channel/description').text),
2292 'entries': entries,
2293 }
2294
2295 @classmethod
2296 def _kvs_get_real_url(cls, video_url, license_code):
2297 if not video_url.startswith('function/0/'):
2298 return video_url # not obfuscated
2299
2300 parsed = urllib.parse.urlparse(video_url[len('function/0/'):])
2301 license = cls._kvs_get_license_token(license_code)
2302 urlparts = parsed.path.split('/')
2303
2304 HASH_LENGTH = 32
2305 hash = urlparts[3][:HASH_LENGTH]
2306 indices = list(range(HASH_LENGTH))
2307
2308 # Swap indices of hash according to the destination calculated from the license token
2309 accum = 0
2310 for src in reversed(range(HASH_LENGTH)):
2311 accum += license[src]
2312 dest = (src + accum) % HASH_LENGTH
2313 indices[src], indices[dest] = indices[dest], indices[src]
2314
2315 urlparts[3] = ''.join(hash[index] for index in indices) + urlparts[3][HASH_LENGTH:]
2316 return urllib.parse.urlunparse(parsed._replace(path='/'.join(urlparts)))
2317
2318 @staticmethod
2319 def _kvs_get_license_token(license):
2320 license = license.replace('$', '')
2321 license_values = [int(char) for char in license]
2322
2323 modlicense = license.replace('0', '1')
2324 center = len(modlicense) // 2
2325 fronthalf = int(modlicense[:center + 1])
2326 backhalf = int(modlicense[center:])
2327 modlicense = str(4 * abs(fronthalf - backhalf))[:center + 1]
2328
2329 return [
2330 (license_values[index + offset] + current) % 10
2331 for index, current in enumerate(map(int, modlicense))
2332 for offset in range(4)
2333 ]
2334
2335 def _extract_kvs(self, url, webpage, video_id):
2336 flashvars = self._search_json(
2337 r'(?s:<script\b[^>]*>.*?var\s+flashvars\s*=)',
2338 webpage, 'flashvars', video_id, transform_source=js_to_json)
2339
2340 # extract the part after the last / as the display_id from the
2341 # canonical URL.
2342 display_id = self._search_regex(
2343 r'(?:<link href="https?://[^"]+/(.+?)/?" rel="canonical"\s*/?>'
2344 r'|<link rel="canonical" href="https?://[^"]+/(.+?)/?"\s*/?>)',
2345 webpage, 'display_id', fatal=False)
2346 title = self._html_search_regex(r'<(?:h1|title)>(?:Video: )?(.+?)</(?:h1|title)>', webpage, 'title')
2347
2348 thumbnail = flashvars['preview_url']
2349 if thumbnail.startswith('//'):
2350 protocol, _, _ = url.partition('/')
2351 thumbnail = protocol + thumbnail
2352
2353 url_keys = list(filter(re.compile(r'^video_(?:url|alt_url\d*)$').match, flashvars.keys()))
2354 formats = []
2355 for key in url_keys:
2356 if '/get_file/' not in flashvars[key]:
2357 continue
2358 format_id = flashvars.get(f'{key}_text', key)
2359 formats.append({
2360 'url': urljoin(url, self._kvs_get_real_url(flashvars[key], flashvars['license_code'])),
2361 'format_id': format_id,
2362 'ext': 'mp4',
2363 **(parse_resolution(format_id) or parse_resolution(flashvars[key])),
2364 'http_headers': {'Referer': url},
2365 })
2366 if not formats[-1].get('height'):
2367 formats[-1]['quality'] = 1
2368
2369 return {
2370 'id': flashvars['video_id'],
2371 'display_id': display_id,
2372 'title': title,
2373 'thumbnail': thumbnail,
2374 'formats': formats,
2375 }
2376
2377 def _real_extract(self, url):
2378 if url.startswith('//'):
2379 return self.url_result(self.http_scheme() + url)
2380
2381 parsed_url = urllib.parse.urlparse(url)
2382 if not parsed_url.scheme:
2383 default_search = self.get_param('default_search')
2384 if default_search is None:
2385 default_search = 'fixup_error'
2386
2387 if default_search in ('auto', 'auto_warning', 'fixup_error'):
2388 if re.match(r'^[^\s/]+\.[^\s/]+/', url):
2389 self.report_warning('The url doesn\'t specify the protocol, trying with http')
2390 return self.url_result('http://' + url)
2391 elif default_search != 'fixup_error':
2392 if default_search == 'auto_warning':
2393 if re.match(r'^(?:url|URL)$', url):
2394 raise ExtractorError(
2395 'Invalid URL: %r . Call yt-dlp like this: yt-dlp -v "https://www.youtube.com/watch?v=BaW_jenozKc" ' % url,
2396 expected=True)
2397 else:
2398 self.report_warning(
2399 'Falling back to youtube search for %s . Set --default-search "auto" to suppress this warning.' % url)
2400 return self.url_result('ytsearch:' + url)
2401
2402 if default_search in ('error', 'fixup_error'):
2403 raise ExtractorError(
2404 '%r is not a valid URL. '
2405 'Set --default-search "ytsearch" (or run yt-dlp "ytsearch:%s" ) to search YouTube'
2406 % (url, url), expected=True)
2407 else:
2408 if ':' not in default_search:
2409 default_search += ':'
2410 return self.url_result(default_search + url)
2411
2412 original_url = url
2413 url, smuggled_data = unsmuggle_url(url, {})
2414 force_videoid = None
2415 is_intentional = smuggled_data.get('to_generic')
2416 if 'force_videoid' in smuggled_data:
2417 force_videoid = smuggled_data['force_videoid']
2418 video_id = force_videoid
2419 else:
2420 video_id = self._generic_id(url)
2421
2422 # Some webservers may serve compressed content of rather big size (e.g. gzipped flac)
2423 # making it impossible to download only chunk of the file (yet we need only 512kB to
2424 # test whether it's HTML or not). According to yt-dlp default Accept-Encoding
2425 # that will always result in downloading the whole file that is not desirable.
2426 # Therefore for extraction pass we have to override Accept-Encoding to any in order
2427 # to accept raw bytes and being able to download only a chunk.
2428 # It may probably better to solve this by checking Content-Type for application/octet-stream
2429 # after a HEAD request, but not sure if we can rely on this.
2430 full_response = self._request_webpage(url, video_id, headers={
2431 'Accept-Encoding': 'identity',
2432 **smuggled_data.get('http_headers', {})
2433 })
2434 new_url = full_response.url
2435 url = urllib.parse.urlparse(url)._replace(scheme=urllib.parse.urlparse(new_url).scheme).geturl()
2436 if new_url != extract_basic_auth(url)[0]:
2437 self.report_following_redirect(new_url)
2438 if force_videoid:
2439 new_url = smuggle_url(new_url, {'force_videoid': force_videoid})
2440 return self.url_result(new_url)
2441
2442 info_dict = {
2443 'id': video_id,
2444 'title': self._generic_title(url),
2445 'timestamp': unified_timestamp(full_response.headers.get('Last-Modified'))
2446 }
2447
2448 # Check for direct link to a video
2449 content_type = full_response.headers.get('Content-Type', '').lower()
2450 m = re.match(r'^(?P<type>audio|video|application(?=/(?:ogg$|(?:vnd\.apple\.|x-)?mpegurl)))/(?P<format_id>[^;\s]+)', content_type)
2451 if m:
2452 self.report_detected('direct video link')
2453 headers = smuggled_data.get('http_headers', {})
2454 format_id = str(m.group('format_id'))
2455 ext = determine_ext(url)
2456 subtitles = {}
2457 if format_id.endswith('mpegurl') or ext == 'm3u8':
2458 formats, subtitles = self._extract_m3u8_formats_and_subtitles(url, video_id, 'mp4', headers=headers)
2459 elif format_id.endswith('mpd') or format_id.endswith('dash+xml') or ext == 'mpd':
2460 formats, subtitles = self._extract_mpd_formats_and_subtitles(url, video_id, headers=headers)
2461 elif format_id == 'f4m' or ext == 'f4m':
2462 formats = self._extract_f4m_formats(url, video_id, headers=headers)
2463 else:
2464 formats = [{
2465 'format_id': format_id,
2466 'url': url,
2467 'vcodec': 'none' if m.group('type') == 'audio' else None
2468 }]
2469 info_dict['direct'] = True
2470 info_dict.update({
2471 'formats': formats,
2472 'subtitles': subtitles,
2473 'http_headers': headers or None,
2474 })
2475 self._extra_manifest_info(info_dict, url)
2476 return info_dict
2477
2478 if not self.get_param('test', False) and not is_intentional:
2479 force = self.get_param('force_generic_extractor', False)
2480 self.report_warning('%s generic information extractor' % ('Forcing' if force else 'Falling back on'))
2481
2482 first_bytes = full_response.read(512)
2483
2484 # Is it an M3U playlist?
2485 if first_bytes.startswith(b'#EXTM3U'):
2486 self.report_detected('M3U playlist')
2487 info_dict['formats'], info_dict['subtitles'] = self._extract_m3u8_formats_and_subtitles(url, video_id, 'mp4')
2488 self._extra_manifest_info(info_dict, url)
2489 return info_dict
2490
2491 # Maybe it's a direct link to a video?
2492 # Be careful not to download the whole thing!
2493 if not is_html(first_bytes):
2494 self.report_warning(
2495 'URL could be a direct video link, returning it as such.')
2496 info_dict.update({
2497 'direct': True,
2498 'url': url,
2499 })
2500 return info_dict
2501
2502 webpage = self._webpage_read_content(
2503 full_response, url, video_id, prefix=first_bytes)
2504
2505 if '<title>DPG Media Privacy Gate</title>' in webpage:
2506 webpage = self._download_webpage(url, video_id)
2507
2508 self.report_extraction(video_id)
2509
2510 # Is it an RSS feed, a SMIL file, an XSPF playlist or a MPD manifest?
2511 try:
2512 try:
2513 doc = compat_etree_fromstring(webpage)
2514 except xml.etree.ElementTree.ParseError:
2515 doc = compat_etree_fromstring(webpage.encode('utf-8'))
2516 if doc.tag == 'rss':
2517 self.report_detected('RSS feed')
2518 return self._extract_rss(url, video_id, doc)
2519 elif doc.tag == 'SmoothStreamingMedia':
2520 info_dict['formats'], info_dict['subtitles'] = self._parse_ism_formats_and_subtitles(doc, url)
2521 self.report_detected('ISM manifest')
2522 return info_dict
2523 elif re.match(r'^(?:{[^}]+})?smil$', doc.tag):
2524 smil = self._parse_smil(doc, url, video_id)
2525 self.report_detected('SMIL file')
2526 return smil
2527 elif doc.tag == '{http://xspf.org/ns/0/}playlist':
2528 self.report_detected('XSPF playlist')
2529 return self.playlist_result(
2530 self._parse_xspf(
2531 doc, video_id, xspf_url=url,
2532 xspf_base_url=full_response.url),
2533 video_id)
2534 elif re.match(r'(?i)^(?:{[^}]+})?MPD$', doc.tag):
2535 info_dict['formats'], info_dict['subtitles'] = self._parse_mpd_formats_and_subtitles(
2536 doc,
2537 mpd_base_url=full_response.url.rpartition('/')[0],
2538 mpd_url=url)
2539 self._extra_manifest_info(info_dict, url)
2540 self.report_detected('DASH manifest')
2541 return info_dict
2542 elif re.match(r'^{http://ns\.adobe\.com/f4m/[12]\.0}manifest$', doc.tag):
2543 info_dict['formats'] = self._parse_f4m_formats(doc, url, video_id)
2544 self.report_detected('F4M manifest')
2545 return info_dict
2546 except xml.etree.ElementTree.ParseError:
2547 pass
2548
2549 info_dict.update({
2550 # it's tempting to parse this further, but you would
2551 # have to take into account all the variations like
2552 # Video Title - Site Name
2553 # Site Name | Video Title
2554 # Video Title - Tagline | Site Name
2555 # and so on and so forth; it's just not practical
2556 'title': self._generic_title('', webpage, default='video'),
2557 'description': self._og_search_description(webpage, default=None),
2558 'thumbnail': self._og_search_thumbnail(webpage, default=None),
2559 'age_limit': self._rta_search(webpage),
2560 })
2561
2562 self._downloader.write_debug('Looking for embeds')
2563 embeds = list(self._extract_embeds(original_url, webpage, urlh=full_response, info_dict=info_dict))
2564 if len(embeds) == 1:
2565 return merge_dicts(embeds[0], info_dict)
2566 elif embeds:
2567 return self.playlist_result(embeds, **info_dict)
2568 raise UnsupportedError(url)
2569
2570 def _extract_embeds(self, url, webpage, *, urlh=None, info_dict={}):
2571 """Returns an iterator of video entries"""
2572 info_dict = types.MappingProxyType(info_dict) # Prevents accidental mutation
2573 video_id = traverse_obj(info_dict, 'display_id', 'id') or self._generic_id(url)
2574 url, smuggled_data = unsmuggle_url(url, {})
2575 actual_url = urlh.url if urlh else url
2576
2577 # Sometimes embedded video player is hidden behind percent encoding
2578 # (e.g. https://github.com/ytdl-org/youtube-dl/issues/2448)
2579 # Unescaping the whole page allows to handle those cases in a generic way
2580 # FIXME: unescaping the whole page may break URLs, commenting out for now.
2581 # There probably should be a second run of generic extractor on unescaped webpage.
2582 # webpage = urllib.parse.unquote(webpage)
2583
2584 embeds = []
2585 for ie in self._downloader._ies.values():
2586 if ie.ie_key() in smuggled_data.get('block_ies', []):
2587 continue
2588 gen = ie.extract_from_webpage(self._downloader, url, webpage)
2589 current_embeds = []
2590 try:
2591 while True:
2592 current_embeds.append(next(gen))
2593 except self.StopExtraction:
2594 self.report_detected(f'{ie.IE_NAME} exclusive embed', len(current_embeds),
2595 embeds and 'discarding other embeds')
2596 return current_embeds
2597 except StopIteration:
2598 self.report_detected(f'{ie.IE_NAME} embed', len(current_embeds))
2599 embeds.extend(current_embeds)
2600
2601 if embeds:
2602 return embeds
2603
2604 jwplayer_data = self._find_jwplayer_data(
2605 webpage, video_id, transform_source=js_to_json)
2606 if jwplayer_data:
2607 if isinstance(jwplayer_data.get('playlist'), str):
2608 self.report_detected('JW Player playlist')
2609 return [self.url_result(jwplayer_data['playlist'], 'JWPlatform')]
2610 try:
2611 info = self._parse_jwplayer_data(
2612 jwplayer_data, video_id, require_title=False, base_url=url)
2613 if traverse_obj(info, 'formats', ('entries', ..., 'formats')):
2614 self.report_detected('JW Player data')
2615 return [info]
2616 except ExtractorError:
2617 # See https://github.com/ytdl-org/youtube-dl/pull/16735
2618 pass
2619
2620 # Video.js embed
2621 mobj = re.search(
2622 r'(?s)\bvideojs\s*\(.+?([a-zA-Z0-9_$]+)\.src\s*\(\s*((?:\[.+?\]|{.+?}))\s*\)\s*;',
2623 webpage)
2624 if mobj is not None:
2625 varname = mobj.group(1)
2626 sources = variadic(self._parse_json(
2627 mobj.group(2), video_id, transform_source=js_to_json, fatal=False) or [])
2628 formats, subtitles, src = [], {}, None
2629 for source in sources:
2630 src = source.get('src')
2631 if not src or not isinstance(src, str):
2632 continue
2633 src = urllib.parse.urljoin(url, src)
2634 src_type = source.get('type')
2635 if isinstance(src_type, str):
2636 src_type = src_type.lower()
2637 ext = determine_ext(src).lower()
2638 if src_type == 'video/youtube':
2639 return [self.url_result(src, YoutubeIE.ie_key())]
2640 if src_type == 'application/dash+xml' or ext == 'mpd':
2641 fmts, subs = self._extract_mpd_formats_and_subtitles(
2642 src, video_id, mpd_id='dash', fatal=False)
2643 formats.extend(fmts)
2644 self._merge_subtitles(subs, target=subtitles)
2645 elif src_type == 'application/x-mpegurl' or ext == 'm3u8':
2646 fmts, subs = self._extract_m3u8_formats_and_subtitles(
2647 src, video_id, 'mp4', entry_protocol='m3u8_native',
2648 m3u8_id='hls', fatal=False)
2649 formats.extend(fmts)
2650 self._merge_subtitles(subs, target=subtitles)
2651
2652 if not formats:
2653 formats.append({
2654 'url': src,
2655 'ext': (mimetype2ext(src_type)
2656 or ext if ext in KNOWN_EXTENSIONS else 'mp4'),
2657 'http_headers': {
2658 'Referer': actual_url,
2659 },
2660 })
2661 # https://docs.videojs.com/player#addRemoteTextTrack
2662 # https://html.spec.whatwg.org/multipage/media.html#htmltrackelement
2663 for sub_match in re.finditer(rf'(?s){re.escape(varname)}' r'\.addRemoteTextTrack\(({.+?})\s*,\s*(?:true|false)\)', webpage):
2664 sub = self._parse_json(
2665 sub_match.group(1), video_id, transform_source=js_to_json, fatal=False) or {}
2666 sub_src = str_or_none(sub.get('src'))
2667 if not sub_src:
2668 continue
2669 subtitles.setdefault(dict_get(sub, ('language', 'srclang')) or 'und', []).append({
2670 'url': urllib.parse.urljoin(url, sub_src),
2671 'name': sub.get('label'),
2672 'http_headers': {
2673 'Referer': actual_url,
2674 },
2675 })
2676 if formats or subtitles:
2677 self.report_detected('video.js embed')
2678 info_dict = {'formats': formats, 'subtitles': subtitles}
2679 if formats:
2680 self._extra_manifest_info(info_dict, src)
2681 return [info_dict]
2682
2683 # Look for generic KVS player (before json-ld bc of some urls that break otherwise)
2684 found = self._search_regex((
2685 r'<script\b[^>]+?\bsrc\s*=\s*(["\'])https?://(?:(?!\1)[^?#])+/kt_player\.js\?v=(?P<ver>\d+(?:\.\d+)+)\1[^>]*>',
2686 r'kt_player\s*\(\s*(["\'])(?:(?!\1)[\w\W])+\1\s*,\s*(["\'])https?://(?:(?!\2)[^?#])+/kt_player\.swf\?v=(?P<ver>\d+(?:\.\d+)+)\2\s*,',
2687 ), webpage, 'KVS player', group='ver', default=False)
2688 if found:
2689 self.report_detected('KVS Player')
2690 if found.split('.')[0] not in ('4', '5', '6'):
2691 self.report_warning(f'Untested major version ({found}) in player engine - download may fail.')
2692 return [self._extract_kvs(url, webpage, video_id)]
2693
2694 # Looking for http://schema.org/VideoObject
2695 json_ld = self._search_json_ld(webpage, video_id, default={})
2696 if json_ld.get('url') not in (url, None):
2697 self.report_detected('JSON LD')
2698 is_direct = json_ld.get('ext') not in (None, *MEDIA_EXTENSIONS.manifests)
2699 return [merge_dicts({
2700 '_type': 'video' if is_direct else 'url_transparent',
2701 'url': smuggle_url(json_ld['url'], {
2702 'force_videoid': video_id,
2703 'to_generic': True,
2704 'http_headers': {'Referer': url},
2705 }),
2706 }, json_ld)]
2707
2708 def check_video(vurl):
2709 if YoutubeIE.suitable(vurl):
2710 return True
2711 if RtmpIE.suitable(vurl):
2712 return True
2713 vpath = urllib.parse.urlparse(vurl).path
2714 vext = determine_ext(vpath, None)
2715 return vext not in (None, 'swf', 'png', 'jpg', 'srt', 'sbv', 'sub', 'vtt', 'ttml', 'js', 'xml')
2716
2717 def filter_video(urls):
2718 return list(filter(check_video, urls))
2719
2720 # Start with something easy: JW Player in SWFObject
2721 found = filter_video(re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage))
2722 if found:
2723 self.report_detected('JW Player in SFWObject')
2724 else:
2725 # Look for gorilla-vid style embedding
2726 found = filter_video(re.findall(r'''(?sx)
2727 (?:
2728 jw_plugins|
2729 JWPlayerOptions|
2730 jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
2731 )
2732 .*?
2733 ['"]?file['"]?\s*:\s*["\'](.*?)["\']''', webpage))
2734 if found:
2735 self.report_detected('JW Player embed')
2736 if not found:
2737 # Broaden the search a little bit
2738 found = filter_video(re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage))
2739 if found:
2740 self.report_detected('video file')
2741 if not found:
2742 # Broaden the findall a little bit: JWPlayer JS loader
2743 found = filter_video(re.findall(
2744 r'[^A-Za-z0-9]?(?:file|video_url)["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage))
2745 if found:
2746 self.report_detected('JW Player JS loader')
2747 if not found:
2748 # Flow player
2749 found = filter_video(re.findall(r'''(?xs)
2750 flowplayer\("[^"]+",\s*
2751 \{[^}]+?\}\s*,
2752 \s*\{[^}]+? ["']?clip["']?\s*:\s*\{\s*
2753 ["']?url["']?\s*:\s*["']([^"']+)["']
2754 ''', webpage))
2755 if found:
2756 self.report_detected('Flow Player')
2757 if not found:
2758 # Cinerama player
2759 found = re.findall(
2760 r"cinerama\.embedPlayer\(\s*\'[^']+\',\s*'([^']+)'", webpage)
2761 if found:
2762 self.report_detected('Cinerama player')
2763 if not found:
2764 # Try to find twitter cards info
2765 # twitter:player:stream should be checked before twitter:player since
2766 # it is expected to contain a raw stream (see
2767 # https://dev.twitter.com/cards/types/player#On_twitter.com_via_desktop_browser)
2768 found = filter_video(re.findall(
2769 r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage))
2770 if found:
2771 self.report_detected('Twitter card')
2772 if not found:
2773 # We look for Open Graph info:
2774 # We have to match any number spaces between elements, some sites try to align them, e.g.: statigr.am
2775 m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
2776 # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
2777 if m_video_type is not None:
2778 found = filter_video(re.findall(r'<meta.*?property="og:(?:video|audio)".*?content="(.*?)"', webpage))
2779 if found:
2780 self.report_detected('Open Graph video info')
2781 if not found:
2782 REDIRECT_REGEX = r'[0-9]{,2};\s*(?:URL|url)=\'?([^\'"]+)'
2783 found = re.search(
2784 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
2785 r'(?:[a-z-]+="[^"]+"\s+)*?content="%s' % REDIRECT_REGEX,
2786 webpage)
2787 if not found:
2788 # Look also in Refresh HTTP header
2789 refresh_header = urlh and urlh.headers.get('Refresh')
2790 if refresh_header:
2791 found = re.search(REDIRECT_REGEX, refresh_header)
2792 if found:
2793 new_url = urllib.parse.urljoin(url, unescapeHTML(found.group(1)))
2794 if new_url != url:
2795 self.report_following_redirect(new_url)
2796 return [self.url_result(new_url)]
2797 else:
2798 found = None
2799
2800 if not found:
2801 # twitter:player is a https URL to iframe player that may or may not
2802 # be supported by yt-dlp thus this is checked the very last (see
2803 # https://dev.twitter.com/cards/types/player#On_twitter.com_via_desktop_browser)
2804 embed_url = self._html_search_meta('twitter:player', webpage, default=None)
2805 if embed_url and embed_url != url:
2806 self.report_detected('twitter:player iframe')
2807 return [self.url_result(embed_url)]
2808
2809 if not found:
2810 return []
2811
2812 domain_name = self._search_regex(r'^(?:https?://)?([^/]*)/.*', url, 'video uploader', default=None)
2813
2814 entries = []
2815 for video_url in orderedSet(found):
2816 video_url = video_url.encode().decode('unicode-escape')
2817 video_url = unescapeHTML(video_url)
2818 video_url = video_url.replace('\\/', '/')
2819 video_url = urllib.parse.urljoin(url, video_url)
2820 video_id = urllib.parse.unquote(os.path.basename(video_url))
2821
2822 # Sometimes, jwplayer extraction will result in a YouTube URL
2823 if YoutubeIE.suitable(video_url):
2824 entries.append(self.url_result(video_url, 'Youtube'))
2825 continue
2826
2827 video_id = os.path.splitext(video_id)[0]
2828 headers = {
2829 'referer': actual_url
2830 }
2831
2832 entry_info_dict = {
2833 'id': video_id,
2834 'uploader': domain_name,
2835 'title': info_dict['title'],
2836 'age_limit': info_dict['age_limit'],
2837 'http_headers': headers,
2838 }
2839
2840 if RtmpIE.suitable(video_url):
2841 entry_info_dict.update({
2842 '_type': 'url_transparent',
2843 'ie_key': RtmpIE.ie_key(),
2844 'url': video_url,
2845 })
2846 entries.append(entry_info_dict)
2847 continue
2848
2849 ext = determine_ext(video_url)
2850 if ext == 'smil':
2851 entry_info_dict = {**self._extract_smil_info(video_url, video_id), **entry_info_dict}
2852 elif ext == 'xspf':
2853 return [self._extract_xspf_playlist(video_url, video_id)]
2854 elif ext == 'm3u8':
2855 entry_info_dict['formats'], entry_info_dict['subtitles'] = self._extract_m3u8_formats_and_subtitles(video_url, video_id, ext='mp4', headers=headers)
2856 self._extra_manifest_info(entry_info_dict, video_url)
2857 elif ext == 'mpd':
2858 entry_info_dict['formats'], entry_info_dict['subtitles'] = self._extract_mpd_formats_and_subtitles(video_url, video_id, headers=headers)
2859 self._extra_manifest_info(entry_info_dict, video_url)
2860 elif ext == 'f4m':
2861 entry_info_dict['formats'] = self._extract_f4m_formats(video_url, video_id, headers=headers)
2862 elif re.search(r'(?i)\.(?:ism|smil)/manifest', video_url) and video_url != url:
2863 # Just matching .ism/manifest is not enough to be reliably sure
2864 # whether it's actually an ISM manifest or some other streaming
2865 # manifest since there are various streaming URL formats
2866 # possible (see [1]) as well as some other shenanigans like
2867 # .smil/manifest URLs that actually serve an ISM (see [2]) and
2868 # so on.
2869 # Thus the most reasonable way to solve this is to delegate
2870 # to generic extractor in order to look into the contents of
2871 # the manifest itself.
2872 # 1. https://azure.microsoft.com/en-us/documentation/articles/media-services-deliver-content-overview/#streaming-url-formats
2873 # 2. https://svs.itworkscdn.net/lbcivod/smil:itwfcdn/lbci/170976.smil/Manifest
2874 entry_info_dict = self.url_result(
2875 smuggle_url(video_url, {'to_generic': True}),
2876 GenericIE.ie_key())
2877 else:
2878 entry_info_dict['url'] = video_url
2879
2880 entries.append(entry_info_dict)
2881
2882 if len(entries) > 1:
2883 for num, e in enumerate(entries, start=1):
2884 # 'url' results don't have a title
2885 if e.get('title') is not None:
2886 e['title'] = '%s (%d)' % (e['title'], num)
2887 return entries