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