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