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