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