]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/generic.py
[extractors] Use new framework for existing embeds (#4307)
[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 . import gen_extractor_classes
7 from .common import InfoExtractor # isort: split
8 from .brightcove import BrightcoveLegacyIE, BrightcoveNewIE
9 from .commonprotocols import RtmpIE
10 from .youtube import YoutubeIE
11 from ..compat import compat_etree_fromstring
12 from ..utils import (
13 KNOWN_EXTENSIONS,
14 ExtractorError,
15 UnsupportedError,
16 determine_ext,
17 dict_get,
18 format_field,
19 int_or_none,
20 is_html,
21 js_to_json,
22 merge_dicts,
23 mimetype2ext,
24 orderedSet,
25 parse_duration,
26 parse_resolution,
27 smuggle_url,
28 str_or_none,
29 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': '1953f3a698ab51cfc948ed3992a0b7ff',
880 'info_dict': {
881 'id': '6e2wtrbdaf',
882 'ext': 'mov',
883 'title': 'paywall_north-american-exploration-failed-colonies-of-spain-france-england',
884 'description': 'a Paywall Videos video from Remilon',
885 'duration': 644.072,
886 'uploader': 'study.com',
887 'timestamp': 1459678540,
888 'upload_date': '20160403',
889 'filesize': 24687186,
890 },
891 },
892 # Wistia standard embed (async)
893 {
894 'url': 'https://www.getdrip.com/university/brennan-dunn-drip-workshop/',
895 'info_dict': {
896 'id': '807fafadvk',
897 'ext': 'mp4',
898 'title': 'Drip Brennan Dunn Workshop',
899 'description': 'a JV Webinars video from getdrip-1',
900 'duration': 4986.95,
901 'timestamp': 1463607249,
902 'upload_date': '20160518',
903 },
904 'params': {
905 'skip_download': True,
906 }
907 },
908 # Soundcloud embed
909 {
910 'url': 'http://nakedsecurity.sophos.com/2014/10/29/sscc-171-are-you-sure-that-1234-is-a-bad-password-podcast/',
911 'info_dict': {
912 'id': '174391317',
913 'ext': 'mp3',
914 'description': 'md5:ff867d6b555488ad3c52572bb33d432c',
915 'uploader': 'Sophos Security',
916 'title': 'Chet Chat 171 - Oct 29, 2014',
917 'upload_date': '20141029',
918 }
919 },
920 # Soundcloud multiple embeds
921 {
922 'url': 'http://www.guitarplayer.com/lessons/1014/legato-workout-one-hour-to-more-fluid-performance---tab/52809',
923 'info_dict': {
924 'id': '52809',
925 'title': 'Guitar Essentials: Legato Workout—One-Hour to Fluid Performance | TAB + AUDIO',
926 },
927 'playlist_mincount': 7,
928 },
929 # TuneIn station embed
930 {
931 'url': 'http://radiocnrv.com/promouvoir-radio-cnrv/',
932 'info_dict': {
933 'id': '204146',
934 'ext': 'mp3',
935 'title': 'CNRV',
936 'location': 'Paris, France',
937 'is_live': True,
938 },
939 'params': {
940 # Live stream
941 'skip_download': True,
942 },
943 },
944 # Livestream embed
945 {
946 'url': 'http://www.esa.int/Our_Activities/Space_Science/Rosetta/Philae_comet_touch-down_webcast',
947 'info_dict': {
948 'id': '67864563',
949 'ext': 'flv',
950 'upload_date': '20141112',
951 'title': 'Rosetta #CometLanding webcast HL 10',
952 }
953 },
954 # Another Livestream embed, without 'new.' in URL
955 {
956 'url': 'https://www.freespeech.org/',
957 'info_dict': {
958 'id': '123537347',
959 'ext': 'mp4',
960 'title': 're:^FSTV [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
961 },
962 'params': {
963 # Live stream
964 'skip_download': True,
965 },
966 },
967 # LazyYT
968 {
969 'url': 'https://skiplagged.com/',
970 'info_dict': {
971 'id': 'skiplagged',
972 'title': 'Skiplagged: The smart way to find cheap flights',
973 },
974 'playlist_mincount': 1,
975 'add_ie': ['Youtube'],
976 },
977 # Cinchcast embed
978 {
979 'url': 'http://undergroundwellness.com/podcasts/306-5-steps-to-permanent-gut-healing/',
980 'info_dict': {
981 'id': '7141703',
982 'ext': 'mp3',
983 'upload_date': '20141126',
984 'title': 'Jack Tips: 5 Steps to Permanent Gut Healing',
985 }
986 },
987 # Cinerama player
988 {
989 'url': 'http://www.abc.net.au/7.30/content/2015/s4164797.htm',
990 'info_dict': {
991 'id': '730m_DandD_1901_512k',
992 'ext': 'mp4',
993 'uploader': 'www.abc.net.au',
994 'title': 'Game of Thrones with dice - Dungeons and Dragons fantasy role-playing game gets new life - 19/01/2015',
995 }
996 },
997 # embedded viddler video
998 {
999 'url': 'http://deadspin.com/i-cant-stop-watching-john-wall-chop-the-nuggets-with-th-1681801597',
1000 'info_dict': {
1001 'id': '4d03aad9',
1002 'ext': 'mp4',
1003 'uploader': 'deadspin',
1004 'title': 'WALL-TO-GORTAT',
1005 'timestamp': 1422285291,
1006 'upload_date': '20150126',
1007 },
1008 'add_ie': ['Viddler'],
1009 },
1010 # Libsyn embed
1011 {
1012 'url': 'http://thedailyshow.cc.com/podcast/episodetwelve',
1013 'info_dict': {
1014 'id': '3377616',
1015 'ext': 'mp3',
1016 'title': "The Daily Show Podcast without Jon Stewart - Episode 12: Bassem Youssef: Egypt's Jon Stewart",
1017 'description': 'md5:601cb790edd05908957dae8aaa866465',
1018 'upload_date': '20150220',
1019 },
1020 'skip': 'All The Daily Show URLs now redirect to http://www.cc.com/shows/',
1021 },
1022 # jwplayer YouTube
1023 {
1024 'url': 'http://media.nationalarchives.gov.uk/index.php/webinar-using-discovery-national-archives-online-catalogue/',
1025 'info_dict': {
1026 'id': 'Mrj4DVp2zeA',
1027 'ext': 'mp4',
1028 'upload_date': '20150212',
1029 'uploader': 'The National Archives UK',
1030 'description': 'md5:8078af856dca76edc42910b61273dbbf',
1031 'uploader_id': 'NationalArchives08',
1032 'title': 'Webinar: Using Discovery, The National Archives’ online catalogue',
1033 },
1034 },
1035 # jwplayer rtmp
1036 {
1037 'url': 'http://www.suffolk.edu/sjc/live.php',
1038 'info_dict': {
1039 'id': 'live',
1040 'ext': 'flv',
1041 'title': 'Massachusetts Supreme Judicial Court Oral Arguments',
1042 'uploader': 'www.suffolk.edu',
1043 },
1044 'params': {
1045 'skip_download': True,
1046 },
1047 'skip': 'Only has video a few mornings per month, see http://www.suffolk.edu/sjc/',
1048 },
1049 # jwplayer with only the json URL
1050 {
1051 'url': 'https://www.hollywoodreporter.com/news/general-news/dunkirk-team-reveals-what-christopher-nolan-said-oscar-win-meet-your-oscar-winner-1092454',
1052 'info_dict': {
1053 'id': 'TljWkvWH',
1054 'ext': 'mp4',
1055 'upload_date': '20180306',
1056 'title': 'md5:91eb1862f6526415214f62c00b453936',
1057 'description': 'md5:73048ae50ae953da10549d1d2fe9b3aa',
1058 'timestamp': 1520367225,
1059 },
1060 'params': {
1061 'skip_download': True,
1062 },
1063 },
1064 # Complex jwplayer
1065 {
1066 'url': 'http://www.indiedb.com/games/king-machine/videos',
1067 'info_dict': {
1068 'id': 'videos',
1069 'ext': 'mp4',
1070 'title': 'king machine trailer 1',
1071 'description': 'Browse King Machine videos & audio for sweet media. Your eyes will thank you.',
1072 'thumbnail': r're:^https?://.*\.jpg$',
1073 },
1074 },
1075 {
1076 # JWPlayer config passed as variable
1077 'url': 'http://www.txxx.com/videos/3326530/ariele/',
1078 'info_dict': {
1079 'id': '3326530_hq',
1080 'ext': 'mp4',
1081 'title': 'ARIELE | Tube Cup',
1082 'uploader': 'www.txxx.com',
1083 'age_limit': 18,
1084 },
1085 'params': {
1086 'skip_download': True,
1087 }
1088 },
1089 {
1090 # JWPlatform iframe
1091 'url': 'https://www.covermagazine.co.uk/feature/2465255/business-protection-involved',
1092 'info_dict': {
1093 'id': 'AG26UQXM',
1094 'ext': 'mp4',
1095 'upload_date': '20160719',
1096 'timestamp': 468923808,
1097 'title': '2016_05_18 Cover L&G Business Protection V1 FINAL.mp4',
1098 },
1099 'add_ie': ['JWPlatform'],
1100 },
1101 {
1102 # Video.js embed, multiple formats
1103 'url': 'http://ortcam.com/solidworks-урок-6-настройка-чертежа_33f9b7351.html',
1104 'info_dict': {
1105 'id': 'yygqldloqIk',
1106 'ext': 'mp4',
1107 'title': 'SolidWorks. Урок 6 Настройка чертежа',
1108 'description': 'md5:baf95267792646afdbf030e4d06b2ab3',
1109 'upload_date': '20130314',
1110 'uploader': 'PROстое3D',
1111 'uploader_id': 'PROstoe3D',
1112 },
1113 'params': {
1114 'skip_download': True,
1115 },
1116 },
1117 {
1118 # Video.js embed, single format
1119 'url': 'https://www.vooplayer.com/v3/watch/watch.php?v=NzgwNTg=',
1120 'info_dict': {
1121 'id': 'watch',
1122 'ext': 'mp4',
1123 'title': 'Step 1 - Good Foundation',
1124 'description': 'md5:d1e7ff33a29fc3eb1673d6c270d344f4',
1125 },
1126 'params': {
1127 'skip_download': True,
1128 },
1129 },
1130 # rtl.nl embed
1131 {
1132 'url': 'http://www.rtlnieuws.nl/nieuws/buitenland/aanslagen-kopenhagen',
1133 'playlist_mincount': 5,
1134 'info_dict': {
1135 'id': 'aanslagen-kopenhagen',
1136 'title': 'Aanslagen Kopenhagen',
1137 }
1138 },
1139 # Zapiks embed
1140 {
1141 'url': 'http://www.skipass.com/news/116090-bon-appetit-s5ep3-baqueira-mi-cor.html',
1142 'info_dict': {
1143 'id': '118046',
1144 'ext': 'mp4',
1145 'title': 'EP3S5 - Bon Appétit - Baqueira Mi Corazon !',
1146 }
1147 },
1148 # Kaltura embed (different embed code)
1149 {
1150 'url': 'http://www.premierchristianradio.com/Shows/Saturday/Unbelievable/Conference-Videos/Os-Guinness-Is-It-Fools-Talk-Unbelievable-Conference-2014',
1151 'info_dict': {
1152 'id': '1_a52wc67y',
1153 'ext': 'flv',
1154 'upload_date': '20150127',
1155 'uploader_id': 'PremierMedia',
1156 'timestamp': int,
1157 'title': 'Os Guinness // Is It Fools Talk? // Unbelievable? Conference 2014',
1158 },
1159 },
1160 # Kaltura embed with single quotes
1161 {
1162 'url': 'http://fod.infobase.com/p_ViewPlaylist.aspx?AssignmentID=NUN8ZY',
1163 'info_dict': {
1164 'id': '0_izeg5utt',
1165 'ext': 'mp4',
1166 'title': '35871',
1167 'timestamp': 1355743100,
1168 'upload_date': '20121217',
1169 'uploader_id': 'cplapp@learn360.com',
1170 },
1171 'add_ie': ['Kaltura'],
1172 },
1173 {
1174 # Kaltura embedded via quoted entry_id
1175 'url': 'https://www.oreilly.com/ideas/my-cloud-makes-pretty-pictures',
1176 'info_dict': {
1177 'id': '0_utuok90b',
1178 'ext': 'mp4',
1179 'title': '06_matthew_brender_raj_dutt',
1180 'timestamp': 1466638791,
1181 'upload_date': '20160622',
1182 },
1183 'add_ie': ['Kaltura'],
1184 'expected_warnings': [
1185 'Could not send HEAD request'
1186 ],
1187 'params': {
1188 'skip_download': True,
1189 }
1190 },
1191 {
1192 # Kaltura embedded, some fileExt broken (#11480)
1193 'url': 'http://www.cornell.edu/video/nima-arkani-hamed-standard-models-of-particle-physics',
1194 'info_dict': {
1195 'id': '1_sgtvehim',
1196 'ext': 'mp4',
1197 'title': 'Our "Standard Models" of particle physics and cosmology',
1198 'description': 'md5:67ea74807b8c4fea92a6f38d6d323861',
1199 'timestamp': 1321158993,
1200 'upload_date': '20111113',
1201 'uploader_id': 'kps1',
1202 },
1203 'add_ie': ['Kaltura'],
1204 },
1205 {
1206 # Kaltura iframe embed
1207 'url': 'http://www.gsd.harvard.edu/event/i-m-pei-a-centennial-celebration/',
1208 'md5': 'ae5ace8eb09dc1a35d03b579a9c2cc44',
1209 'info_dict': {
1210 'id': '0_f2cfbpwy',
1211 'ext': 'mp4',
1212 'title': 'I. M. Pei: A Centennial Celebration',
1213 'description': 'md5:1db8f40c69edc46ca180ba30c567f37c',
1214 'upload_date': '20170403',
1215 'uploader_id': 'batchUser',
1216 'timestamp': 1491232186,
1217 },
1218 'add_ie': ['Kaltura'],
1219 },
1220 {
1221 # Kaltura iframe embed, more sophisticated
1222 'url': 'http://www.cns.nyu.edu/~eero/math-tools/Videos/lecture-05sep2017.html',
1223 'info_dict': {
1224 'id': '1_9gzouybz',
1225 'ext': 'mp4',
1226 'title': 'lecture-05sep2017',
1227 'description': 'md5:40f347d91fd4ba047e511c5321064b49',
1228 'upload_date': '20170913',
1229 'uploader_id': 'eps2',
1230 'timestamp': 1505340777,
1231 },
1232 'params': {
1233 'skip_download': True,
1234 },
1235 'add_ie': ['Kaltura'],
1236 },
1237 {
1238 # meta twitter:player
1239 'url': 'http://thechive.com/2017/12/08/all-i-want-for-christmas-is-more-twerk/',
1240 'info_dict': {
1241 'id': '0_01b42zps',
1242 'ext': 'mp4',
1243 'title': 'Main Twerk (Video)',
1244 'upload_date': '20171208',
1245 'uploader_id': 'sebastian.salinas@thechive.com',
1246 'timestamp': 1512713057,
1247 },
1248 'params': {
1249 'skip_download': True,
1250 },
1251 'add_ie': ['Kaltura'],
1252 },
1253 # referrer protected EaglePlatform embed
1254 {
1255 'url': 'https://tvrain.ru/lite/teleshow/kak_vse_nachinalos/namin-418921/',
1256 'info_dict': {
1257 'id': '582306',
1258 'ext': 'mp4',
1259 'title': 'Стас Намин: «Мы нарушили девственность Кремля»',
1260 'thumbnail': r're:^https?://.*\.jpg$',
1261 'duration': 3382,
1262 'view_count': int,
1263 },
1264 'params': {
1265 'skip_download': True,
1266 },
1267 },
1268 # ClipYou (EaglePlatform) embed (custom URL)
1269 {
1270 'url': 'http://muz-tv.ru/play/7129/',
1271 # Not checking MD5 as sometimes the direct HTTP link results in 404 and HLS is used
1272 'info_dict': {
1273 'id': '12820',
1274 'ext': 'mp4',
1275 'title': "'O Sole Mio",
1276 'thumbnail': r're:^https?://.*\.jpg$',
1277 'duration': 216,
1278 'view_count': int,
1279 },
1280 'params': {
1281 'skip_download': True,
1282 },
1283 'skip': 'This video is unavailable.',
1284 },
1285 # Pladform embed
1286 {
1287 'url': 'http://muz-tv.ru/kinozal/view/7400/',
1288 'info_dict': {
1289 'id': '100183293',
1290 'ext': 'mp4',
1291 'title': 'Тайны перевала Дятлова • 1 серия 2 часть',
1292 'description': 'Документальный сериал-расследование одной из самых жутких тайн ХХ века',
1293 'thumbnail': r're:^https?://.*\.jpg$',
1294 'duration': 694,
1295 'age_limit': 0,
1296 },
1297 'skip': 'HTTP Error 404: Not Found',
1298 },
1299 # Playwire embed
1300 {
1301 'url': 'http://www.cinemablend.com/new/First-Joe-Dirt-2-Trailer-Teaser-Stupid-Greatness-70874.html',
1302 'info_dict': {
1303 'id': '3519514',
1304 'ext': 'mp4',
1305 'title': 'Joe Dirt 2 Beautiful Loser Teaser Trailer',
1306 'thumbnail': r're:^https?://.*\.png$',
1307 'duration': 45.115,
1308 },
1309 },
1310 # Crooks and Liars embed
1311 {
1312 'url': 'http://crooksandliars.com/2015/04/fox-friends-says-protecting-atheists',
1313 'info_dict': {
1314 'id': '8RUoRhRi',
1315 'ext': 'mp4',
1316 'title': "Fox & Friends Says Protecting Atheists From Discrimination Is Anti-Christian!",
1317 'description': 'md5:e1a46ad1650e3a5ec7196d432799127f',
1318 'timestamp': 1428207000,
1319 'upload_date': '20150405',
1320 'uploader': 'Heather',
1321 },
1322 },
1323 # Crooks and Liars external embed
1324 {
1325 'url': 'http://theothermccain.com/2010/02/02/video-proves-that-bill-kristol-has-been-watching-glenn-beck/comment-page-1/',
1326 'info_dict': {
1327 'id': 'MTE3MjUtMzQ2MzA',
1328 'ext': 'mp4',
1329 'title': 'md5:5e3662a81a4014d24c250d76d41a08d5',
1330 'description': 'md5:9b8e9542d6c3c5de42d6451b7d780cec',
1331 'timestamp': 1265032391,
1332 'upload_date': '20100201',
1333 'uploader': 'Heather',
1334 },
1335 },
1336 # NBC Sports vplayer embed
1337 {
1338 'url': 'http://www.riderfans.com/forum/showthread.php?121827-Freeman&s=e98fa1ea6dc08e886b1678d35212494a',
1339 'info_dict': {
1340 'id': 'ln7x1qSThw4k',
1341 'ext': 'flv',
1342 'title': "PFT Live: New leader in the 'new-look' defense",
1343 'description': 'md5:65a19b4bbfb3b0c0c5768bed1dfad74e',
1344 'uploader': 'NBCU-SPORTS',
1345 'upload_date': '20140107',
1346 'timestamp': 1389118457,
1347 },
1348 'skip': 'Invalid Page URL',
1349 },
1350 # NBC News embed
1351 {
1352 'url': 'http://www.vulture.com/2016/06/letterman-couldnt-care-less-about-late-night.html',
1353 'md5': '1aa589c675898ae6d37a17913cf68d66',
1354 'info_dict': {
1355 'id': 'x_dtl_oa_LettermanliftPR_160608',
1356 'ext': 'mp4',
1357 'title': 'David Letterman: A Preview',
1358 '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.',
1359 'upload_date': '20160609',
1360 'timestamp': 1465431544,
1361 'uploader': 'NBCU-NEWS',
1362 },
1363 },
1364 # UDN embed
1365 {
1366 'url': 'https://video.udn.com/news/300346',
1367 'md5': 'fd2060e988c326991037b9aff9df21a6',
1368 'info_dict': {
1369 'id': '300346',
1370 'ext': 'mp4',
1371 'title': '中一中男師變性 全校師生力挺',
1372 'thumbnail': r're:^https?://.*\.jpg$',
1373 },
1374 'params': {
1375 # m3u8 download
1376 'skip_download': True,
1377 },
1378 'expected_warnings': ['Failed to parse JSON Expecting value'],
1379 },
1380 # Brightcove URL in single quotes
1381 {
1382 'url': 'http://www.sportsnet.ca/baseball/mlb/sn-presents-russell-martin-world-citizen/',
1383 'md5': '4ae374f1f8b91c889c4b9203c8c752af',
1384 'info_dict': {
1385 'id': '4255764656001',
1386 'ext': 'mp4',
1387 'title': 'SN Presents: Russell Martin, World Citizen',
1388 '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.',
1389 'uploader': 'Rogers Sportsnet',
1390 'uploader_id': '1704050871',
1391 'upload_date': '20150525',
1392 'timestamp': 1432570283,
1393 },
1394 },
1395 # Kinja embed
1396 {
1397 'url': 'http://www.clickhole.com/video/dont-understand-bitcoin-man-will-mumble-explanatio-2537',
1398 'info_dict': {
1399 'id': '106351',
1400 'ext': 'mp4',
1401 'title': 'Don’t Understand Bitcoin? This Man Will Mumble An Explanation At You',
1402 'description': 'Migrated from OnionStudios',
1403 'thumbnail': r're:^https?://.*\.jpe?g$',
1404 'uploader': 'clickhole',
1405 'upload_date': '20150527',
1406 'timestamp': 1432744860,
1407 }
1408 },
1409 # SnagFilms embed
1410 {
1411 'url': 'http://whilewewatch.blogspot.ru/2012/06/whilewewatch-whilewewatch-gripping.html',
1412 'info_dict': {
1413 'id': '74849a00-85a9-11e1-9660-123139220831',
1414 'ext': 'mp4',
1415 'title': '#whilewewatch',
1416 }
1417 },
1418 # AdobeTVVideo embed
1419 {
1420 'url': 'https://helpx.adobe.com/acrobat/how-to/new-experience-acrobat-dc.html?set=acrobat--get-started--essential-beginners',
1421 'md5': '43662b577c018ad707a63766462b1e87',
1422 'info_dict': {
1423 'id': '2456',
1424 'ext': 'mp4',
1425 'title': 'New experience with Acrobat DC',
1426 'description': 'New experience with Acrobat DC',
1427 'duration': 248.667,
1428 },
1429 },
1430 # BrightcoveInPageEmbed embed
1431 {
1432 'url': 'http://www.geekandsundry.com/tabletop-bonus-wils-final-thoughts-on-dread/',
1433 'info_dict': {
1434 'id': '4238694884001',
1435 'ext': 'flv',
1436 'title': 'Tabletop: Dread, Last Thoughts',
1437 'description': 'Tabletop: Dread, Last Thoughts',
1438 'duration': 51690,
1439 },
1440 },
1441 # Brightcove embed, with no valid 'renditions' but valid 'IOSRenditions'
1442 # This video can't be played in browsers if Flash disabled and UA set to iPhone, which is actually a false alarm
1443 {
1444 'url': 'https://dl.dropboxusercontent.com/u/29092637/interview.html',
1445 'info_dict': {
1446 'id': '4785848093001',
1447 'ext': 'mp4',
1448 'title': 'The Cardinal Pell Interview',
1449 'description': 'Sky News Contributor Andrew Bolt interviews George Pell in Rome, following the Cardinal\'s evidence before the Royal Commission into Child Abuse. ',
1450 'uploader': 'GlobeCast Australia - GlobeStream',
1451 'uploader_id': '2733773828001',
1452 'upload_date': '20160304',
1453 'timestamp': 1457083087,
1454 },
1455 'params': {
1456 # m3u8 downloads
1457 'skip_download': True,
1458 },
1459 },
1460 {
1461 # Brightcove embed with whitespace around attribute names
1462 'url': 'http://www.stack.com/video/3167554373001/learn-to-hit-open-three-pointers-with-damian-lillard-s-baseline-drift-drill',
1463 'info_dict': {
1464 'id': '3167554373001',
1465 'ext': 'mp4',
1466 'title': "Learn to Hit Open Three-Pointers With Damian Lillard's Baseline Drift Drill",
1467 'description': 'md5:57bacb0e0f29349de4972bfda3191713',
1468 'uploader_id': '1079349493',
1469 'upload_date': '20140207',
1470 'timestamp': 1391810548,
1471 },
1472 'params': {
1473 'skip_download': True,
1474 },
1475 },
1476 # Another form of arte.tv embed
1477 {
1478 'url': 'http://www.tv-replay.fr/redirection/09-04-16/arte-reportage-arte-11508975.html',
1479 'md5': '850bfe45417ddf221288c88a0cffe2e2',
1480 'info_dict': {
1481 'id': '030273-562_PLUS7-F',
1482 'ext': 'mp4',
1483 'title': 'ARTE Reportage - Nulle part, en France',
1484 'description': 'md5:e3a0e8868ed7303ed509b9e3af2b870d',
1485 'upload_date': '20160409',
1486 },
1487 },
1488 # Duplicated embedded video URLs
1489 {
1490 'url': 'http://www.hudl.com/athlete/2538180/highlights/149298443',
1491 'info_dict': {
1492 'id': '149298443_480_16c25b74_2',
1493 'ext': 'mp4',
1494 'title': 'vs. Blue Orange Spring Game',
1495 'uploader': 'www.hudl.com',
1496 },
1497 },
1498 # twitter:player:stream embed
1499 {
1500 'url': 'http://www.rtl.be/info/video/589263.aspx?CategoryID=288',
1501 'info_dict': {
1502 'id': 'master',
1503 'ext': 'mp4',
1504 'title': 'Une nouvelle espèce de dinosaure découverte en Argentine',
1505 'uploader': 'www.rtl.be',
1506 },
1507 'params': {
1508 # m3u8 downloads
1509 'skip_download': True,
1510 },
1511 },
1512 # twitter:player embed
1513 {
1514 'url': 'http://www.theatlantic.com/video/index/484130/what-do-black-holes-sound-like/',
1515 'md5': 'a3e0df96369831de324f0778e126653c',
1516 'info_dict': {
1517 'id': '4909620399001',
1518 'ext': 'mp4',
1519 'title': 'What Do Black Holes Sound Like?',
1520 'description': 'what do black holes sound like',
1521 'upload_date': '20160524',
1522 'uploader_id': '29913724001',
1523 'timestamp': 1464107587,
1524 'uploader': 'TheAtlantic',
1525 },
1526 'add_ie': ['BrightcoveLegacy'],
1527 },
1528 # Facebook <iframe> embed
1529 {
1530 'url': 'https://www.hostblogger.de/blog/archives/6181-Auto-jagt-Betonmischer.html',
1531 'md5': 'fbcde74f534176ecb015849146dd3aee',
1532 'info_dict': {
1533 'id': '599637780109885',
1534 'ext': 'mp4',
1535 'title': 'Facebook video #599637780109885',
1536 },
1537 },
1538 # Facebook <iframe> embed, plugin video
1539 {
1540 'url': 'http://5pillarsuk.com/2017/06/07/tariq-ramadan-disagrees-with-pr-exercise-by-imams-refusing-funeral-prayers-for-london-attackers/',
1541 'info_dict': {
1542 'id': '1754168231264132',
1543 'ext': 'mp4',
1544 'title': 'About the Imams and Religious leaders refusing to perform funeral prayers for...',
1545 'uploader': 'Tariq Ramadan (official)',
1546 'timestamp': 1496758379,
1547 'upload_date': '20170606',
1548 },
1549 'params': {
1550 'skip_download': True,
1551 },
1552 },
1553 # Facebook API embed
1554 {
1555 'url': 'http://www.lothype.com/blue-stars-2016-preview-standstill-full-show/',
1556 'md5': 'a47372ee61b39a7b90287094d447d94e',
1557 'info_dict': {
1558 'id': '10153467542406923',
1559 'ext': 'mp4',
1560 'title': 'Facebook video #10153467542406923',
1561 },
1562 },
1563 # Wordpress "YouTube Video Importer" plugin
1564 {
1565 'url': 'http://www.lothype.com/blue-devils-drumline-stanford-lot-2016/',
1566 'md5': 'd16797741b560b485194eddda8121b48',
1567 'info_dict': {
1568 'id': 'HNTXWDXV9Is',
1569 'ext': 'mp4',
1570 'title': 'Blue Devils Drumline Stanford lot 2016',
1571 'upload_date': '20160627',
1572 'uploader_id': 'GENOCIDE8GENERAL10',
1573 'uploader': 'cylus cyrus',
1574 },
1575 },
1576 {
1577 # video stored on custom kaltura server
1578 'url': 'http://www.expansion.com/multimedia/videos.html?media=EQcM30NHIPv',
1579 'md5': '537617d06e64dfed891fa1593c4b30cc',
1580 'info_dict': {
1581 'id': '0_1iotm5bh',
1582 'ext': 'mp4',
1583 'title': 'Elecciones británicas: 5 lecciones para Rajoy',
1584 'description': 'md5:435a89d68b9760b92ce67ed227055f16',
1585 'uploader_id': 'videos.expansion@el-mundo.net',
1586 'upload_date': '20150429',
1587 'timestamp': 1430303472,
1588 },
1589 'add_ie': ['Kaltura'],
1590 },
1591 {
1592 # multiple kaltura embeds, nsfw
1593 'url': 'https://www.quartier-rouge.be/prive/femmes/kamila-avec-video-jaime-sadomie.html',
1594 'info_dict': {
1595 'id': 'kamila-avec-video-jaime-sadomie',
1596 'title': "Kamila avec vídeo “J'aime sadomie”",
1597 },
1598 'playlist_count': 8,
1599 },
1600 {
1601 # Non-standard Vimeo embed
1602 'url': 'https://openclassrooms.com/courses/understanding-the-web',
1603 'md5': '64d86f1c7d369afd9a78b38cbb88d80a',
1604 'info_dict': {
1605 'id': '148867247',
1606 'ext': 'mp4',
1607 'title': 'Understanding the web - Teaser',
1608 'description': 'This is "Understanding the web - Teaser" by openclassrooms on Vimeo, the home for high quality videos and the people who love them.',
1609 'upload_date': '20151214',
1610 'uploader': 'OpenClassrooms',
1611 'uploader_id': 'openclassrooms',
1612 },
1613 'add_ie': ['Vimeo'],
1614 },
1615 {
1616 # generic vimeo embed that requires original URL passed as Referer
1617 'url': 'http://racing4everyone.eu/2016/07/30/formula-1-2016-round12-germany/',
1618 'only_matching': True,
1619 },
1620 {
1621 'url': 'https://support.arkena.com/display/PLAY/Ways+to+embed+your+video',
1622 'md5': 'b96f2f71b359a8ecd05ce4e1daa72365',
1623 'info_dict': {
1624 'id': 'b41dda37-d8e7-4d3f-b1b5-9a9db578bdfe',
1625 'ext': 'mp4',
1626 'title': 'Big Buck Bunny',
1627 'description': 'Royalty free test video',
1628 'timestamp': 1432816365,
1629 'upload_date': '20150528',
1630 'is_live': False,
1631 },
1632 'params': {
1633 'skip_download': True,
1634 },
1635 'add_ie': ['Arkena'],
1636 },
1637 {
1638 '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/',
1639 'info_dict': {
1640 'id': '1c7141f46c',
1641 'ext': 'mp4',
1642 'title': 'НА КОСЪМ ОТ ВЗРИВ: Изтичане на газ на бензиностанция в Пловдив',
1643 },
1644 'params': {
1645 'skip_download': True,
1646 },
1647 'add_ie': ['Vbox7'],
1648 },
1649 {
1650 # DBTV embeds
1651 'url': 'http://www.dagbladet.no/2016/02/23/nyheter/nordlys/ski/troms/ver/43254897/',
1652 'info_dict': {
1653 'id': '43254897',
1654 'title': 'Etter ett års planlegging, klaffet endelig alt: - Jeg måtte ta en liten dans',
1655 },
1656 'playlist_mincount': 3,
1657 },
1658 {
1659 # Videa embeds
1660 'url': 'http://forum.dvdtalk.com/movie-talk/623756-deleted-magic-star-wars-ot-deleted-alt-scenes-docu-style.html',
1661 'info_dict': {
1662 'id': '623756-deleted-magic-star-wars-ot-deleted-alt-scenes-docu-style',
1663 'title': 'Deleted Magic - Star Wars: OT Deleted / Alt. Scenes Docu. Style - DVD Talk Forum',
1664 },
1665 'playlist_mincount': 2,
1666 },
1667 {
1668 # 20 minuten embed
1669 'url': 'http://www.20min.ch/schweiz/news/story/So-kommen-Sie-bei-Eis-und-Schnee-sicher-an-27032552',
1670 'info_dict': {
1671 'id': '523629',
1672 'ext': 'mp4',
1673 'title': 'So kommen Sie bei Eis und Schnee sicher an',
1674 'description': 'md5:117c212f64b25e3d95747e5276863f7d',
1675 },
1676 'params': {
1677 'skip_download': True,
1678 },
1679 'add_ie': ['TwentyMinuten'],
1680 },
1681 {
1682 # VideoPress embed
1683 'url': 'https://en.support.wordpress.com/videopress/',
1684 'info_dict': {
1685 'id': 'OcobLTqC',
1686 'ext': 'm4v',
1687 'title': 'IMG_5786',
1688 'timestamp': 1435711927,
1689 'upload_date': '20150701',
1690 },
1691 'params': {
1692 'skip_download': True,
1693 },
1694 'add_ie': ['VideoPress'],
1695 },
1696 {
1697 # Rutube embed
1698 'url': 'http://magazzino.friday.ru/videos/vipuski/kazan-2',
1699 'info_dict': {
1700 'id': '9b3d5bee0a8740bf70dfd29d3ea43541',
1701 'ext': 'flv',
1702 'title': 'Магаззино: Казань 2',
1703 'description': 'md5:99bccdfac2269f0e8fdbc4bbc9db184a',
1704 'uploader': 'Магаззино',
1705 'upload_date': '20170228',
1706 'uploader_id': '996642',
1707 },
1708 'params': {
1709 'skip_download': True,
1710 },
1711 'add_ie': ['Rutube'],
1712 },
1713 {
1714 # glomex:embed
1715 'url': 'https://www.skai.gr/news/world/iatrikos-syllogos-tourkias-to-turkovac-aplo-dialyma-erntogan-eiste-apateones-kai-pseytes',
1716 'info_dict': {
1717 'id': 'v-ch2nkhcirwc9-sf',
1718 'ext': 'mp4',
1719 'title': 'md5:786e1e24e06c55993cee965ef853a0c1',
1720 'description': 'md5:8b517a61d577efe7e36fde72fd535995',
1721 'timestamp': 1641885019,
1722 'upload_date': '20220111',
1723 'duration': 460000,
1724 'thumbnail': 'https://i3thumbs.glomex.com/dC1idjJwdndiMjRzeGwvMjAyMi8wMS8xMS8wNy8xMF8zNV82MWRkMmQ2YmU5ZTgyLmpwZw==/profile:player-960x540',
1725 },
1726 },
1727 {
1728 # megatvcom:embed
1729 'url': 'https://www.in.gr/2021/12/18/greece/apokalypsi-mega-poios-parelave-tin-ereyna-tsiodra-ek-merous-tis-kyvernisis-o-prothypourgos-telika-gnorize/',
1730 'info_dict': {
1731 'id': 'apokalypsi-mega-poios-parelave-tin-ereyna-tsiodra-ek-merous-tis-kyvernisis-o-prothypourgos-telika-gnorize',
1732 'title': 'md5:5e569cf996ec111057c2764ec272848f',
1733 },
1734 'playlist': [{
1735 'md5': '1afa26064ff00ccb91617957dbc73dc1',
1736 'info_dict': {
1737 'ext': 'mp4',
1738 'id': '564916',
1739 'display_id': 'md5:6cdf22d3a2e7bacb274b7295089a1770',
1740 'title': 'md5:33b9dd39584685b62873043670eb52a6',
1741 'description': 'md5:c1db7310f390518ac36dd69d947ef1a1',
1742 'timestamp': 1639753145,
1743 'upload_date': '20211217',
1744 'thumbnail': 'https://www.megatv.com/wp-content/uploads/2021/12/prezerakos-1024x597.jpg',
1745 },
1746 }, {
1747 'md5': '4a1c220695f1ef865a8b7966a53e2474',
1748 'info_dict': {
1749 'ext': 'mp4',
1750 'id': '564905',
1751 'display_id': 'md5:ead15695e485e649aed2b81ebd699b88',
1752 'title': 'md5:2b71fd54249a3ca34609fe39ae31c47b',
1753 'description': 'md5:c42e12f638d0a97d6de4508e2c4df982',
1754 'timestamp': 1639753047,
1755 'upload_date': '20211217',
1756 'thumbnail': 'https://www.megatv.com/wp-content/uploads/2021/12/tsiodras-mitsotakis-1024x545.jpg',
1757 },
1758 }]
1759 },
1760 {
1761 'url': 'https://www.ertnews.gr/video/manolis-goyalles-o-anthropos-piso-apo-ti-diadiktyaki-vasilopita/',
1762 'info_dict': {
1763 'id': '2022/tv/news-themata-ianouarios/20220114-apotis6-gouales-pita.mp4',
1764 'ext': 'mp4',
1765 'title': 'md5:df64f5b61c06d0e9556c0cdd5cf14464',
1766 'thumbnail': 'https://www.ert.gr/themata/photos/2021/20220114-apotis6-gouales-pita.jpg',
1767 },
1768 },
1769 {
1770 # ThePlatform embedded with whitespaces in URLs
1771 'url': 'http://www.golfchannel.com/topics/shows/golftalkcentral.htm',
1772 'only_matching': True,
1773 },
1774 {
1775 # Senate ISVP iframe https
1776 'url': 'https://www.hsgac.senate.gov/hearings/canadas-fast-track-refugee-plan-unanswered-questions-and-implications-for-us-national-security',
1777 'md5': 'fb8c70b0b515e5037981a2492099aab8',
1778 'info_dict': {
1779 'id': 'govtaff020316',
1780 'ext': 'mp4',
1781 'title': 'Integrated Senate Video Player',
1782 },
1783 'add_ie': ['SenateISVP'],
1784 },
1785 {
1786 # Limelight embeds (1 channel embed + 4 media embeds)
1787 'url': 'http://www.sedona.com/FacilitatorTraining2017',
1788 'info_dict': {
1789 'id': 'FacilitatorTraining2017',
1790 'title': 'Facilitator Training 2017',
1791 },
1792 'playlist_mincount': 5,
1793 },
1794 {
1795 # Limelight embed (LimelightPlayerUtil.embed)
1796 'url': 'https://tv5.ca/videos?v=xuu8qowr291ri',
1797 'info_dict': {
1798 'id': '95d035dc5c8a401588e9c0e6bd1e9c92',
1799 'ext': 'mp4',
1800 'title': '07448641',
1801 'timestamp': 1499890639,
1802 'upload_date': '20170712',
1803 },
1804 'params': {
1805 'skip_download': True,
1806 },
1807 'add_ie': ['LimelightMedia'],
1808 },
1809 {
1810 'url': 'http://kron4.com/2017/04/28/standoff-with-walnut-creek-murder-suspect-ends-with-arrest/',
1811 'info_dict': {
1812 'id': 'standoff-with-walnut-creek-murder-suspect-ends-with-arrest',
1813 'title': 'Standoff with Walnut Creek murder suspect ends',
1814 'description': 'md5:3ccc48a60fc9441eeccfc9c469ebf788',
1815 },
1816 'playlist_mincount': 4,
1817 },
1818 {
1819 # WashingtonPost embed
1820 'url': 'http://www.vanityfair.com/hollywood/2017/04/donald-trump-tv-pitches',
1821 'info_dict': {
1822 'id': '8caf6e88-d0ec-11e5-90d3-34c2c42653ac',
1823 'ext': 'mp4',
1824 'title': "No one has seen the drama series based on Trump's life \u2014 until now",
1825 '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.',
1826 'timestamp': 1455216756,
1827 'uploader': 'The Washington Post',
1828 'upload_date': '20160211',
1829 },
1830 'add_ie': ['WashingtonPost'],
1831 },
1832 {
1833 # Mediaset embed
1834 'url': 'http://www.tgcom24.mediaset.it/politica/serracchiani-voglio-vivere-in-una-societa-aperta-reazioni-sproporzionate-_3071354-201702a.shtml',
1835 'info_dict': {
1836 'id': '720642',
1837 'ext': 'mp4',
1838 'title': 'Serracchiani: "Voglio vivere in una società aperta, con tutela del patto di fiducia"',
1839 },
1840 'params': {
1841 'skip_download': True,
1842 },
1843 'add_ie': ['Mediaset'],
1844 },
1845 {
1846 # JOJ.sk embeds
1847 'url': 'https://www.noviny.sk/slovensko/238543-slovenskom-sa-prehnala-vlna-silnych-burok',
1848 'info_dict': {
1849 'id': '238543-slovenskom-sa-prehnala-vlna-silnych-burok',
1850 'title': 'Slovenskom sa prehnala vlna silných búrok',
1851 },
1852 'playlist_mincount': 5,
1853 'add_ie': ['Joj'],
1854 },
1855 {
1856 # AMP embed (see https://www.ampproject.org/docs/reference/components/amp-video)
1857 'url': 'https://tvrain.ru/amp/418921/',
1858 'md5': 'cc00413936695987e8de148b67d14f1d',
1859 'info_dict': {
1860 'id': '418921',
1861 'ext': 'mp4',
1862 'title': 'Стас Намин: «Мы нарушили девственность Кремля»',
1863 },
1864 },
1865 {
1866 # vzaar embed
1867 'url': 'http://help.vzaar.com/article/165-embedding-video',
1868 'md5': '7e3919d9d2620b89e3e00bec7fe8c9d4',
1869 'info_dict': {
1870 'id': '8707641',
1871 'ext': 'mp4',
1872 'title': 'Building A Business Online: Principal Chairs Q & A',
1873 },
1874 },
1875 {
1876 # multiple HTML5 videos on one page
1877 'url': 'https://www.paragon-software.com/home/rk-free/keyscenarios.html',
1878 'info_dict': {
1879 'id': 'keyscenarios',
1880 'title': 'Rescue Kit 14 Free Edition - Getting started',
1881 },
1882 'playlist_count': 4,
1883 },
1884 {
1885 # vshare embed
1886 'url': 'https://youtube-dl-demo.neocities.org/vshare.html',
1887 'md5': '17b39f55b5497ae8b59f5fbce8e35886',
1888 'info_dict': {
1889 'id': '0f64ce6',
1890 'title': 'vl14062007715967',
1891 'ext': 'mp4',
1892 }
1893 },
1894 {
1895 'url': 'http://www.heidelberg-laureate-forum.org/blog/video/lecture-friday-september-23-2016-sir-c-antony-r-hoare/',
1896 'md5': 'aecd089f55b1cb5a59032cb049d3a356',
1897 'info_dict': {
1898 'id': '90227f51a80c4d8f86c345a7fa62bd9a1d',
1899 'ext': 'mp4',
1900 'title': 'Lecture: Friday, September 23, 2016 - Sir Tony Hoare',
1901 'description': 'md5:5a51db84a62def7b7054df2ade403c6c',
1902 'timestamp': 1474354800,
1903 'upload_date': '20160920',
1904 }
1905 },
1906 {
1907 'url': 'http://www.kidzworld.com/article/30935-trolls-the-beat-goes-on-interview-skylar-astin-and-amanda-leighton',
1908 'info_dict': {
1909 'id': '1731611',
1910 'ext': 'mp4',
1911 'title': 'Official Trailer | TROLLS: THE BEAT GOES ON!',
1912 'description': 'md5:eb5f23826a027ba95277d105f248b825',
1913 'timestamp': 1516100691,
1914 'upload_date': '20180116',
1915 },
1916 'params': {
1917 'skip_download': True,
1918 },
1919 'add_ie': ['SpringboardPlatform'],
1920 },
1921 {
1922 'url': 'https://www.yapfiles.ru/show/1872528/690b05d3054d2dbe1e69523aa21bb3b1.mp4.html',
1923 'info_dict': {
1924 'id': 'vMDE4NzI1Mjgt690b',
1925 'ext': 'mp4',
1926 'title': 'Котята',
1927 },
1928 'add_ie': ['YapFiles'],
1929 'params': {
1930 'skip_download': True,
1931 },
1932 },
1933 {
1934 # CloudflareStream embed
1935 'url': 'https://www.cloudflare.com/products/cloudflare-stream/',
1936 'info_dict': {
1937 'id': '31c9291ab41fac05471db4e73aa11717',
1938 'ext': 'mp4',
1939 'title': '31c9291ab41fac05471db4e73aa11717',
1940 },
1941 'add_ie': ['CloudflareStream'],
1942 'params': {
1943 'skip_download': True,
1944 },
1945 },
1946 {
1947 # PeerTube embed
1948 'url': 'https://joinpeertube.org/fr/home/',
1949 'info_dict': {
1950 'id': 'home',
1951 'title': 'Reprenez le contrôle de vos vidéos ! #JoinPeertube',
1952 },
1953 'playlist_count': 2,
1954 },
1955 {
1956 # Indavideo embed
1957 'url': 'https://streetkitchen.hu/receptek/igy_kell_otthon_hamburgert_sutni/',
1958 'info_dict': {
1959 'id': '1693903',
1960 'ext': 'mp4',
1961 'title': 'Így kell otthon hamburgert sütni',
1962 'description': 'md5:f5a730ecf900a5c852e1e00540bbb0f7',
1963 'timestamp': 1426330212,
1964 'upload_date': '20150314',
1965 'uploader': 'StreetKitchen',
1966 'uploader_id': '546363',
1967 },
1968 'add_ie': ['IndavideoEmbed'],
1969 'params': {
1970 'skip_download': True,
1971 },
1972 },
1973 {
1974 # APA embed via JWPlatform embed
1975 'url': 'http://www.vol.at/blue-man-group/5593454',
1976 'info_dict': {
1977 'id': 'jjv85FdZ',
1978 'ext': 'mp4',
1979 'title': '"Blau ist mysteriös": Die Blue Man Group im Interview',
1980 'description': 'md5:d41d8cd98f00b204e9800998ecf8427e',
1981 'thumbnail': r're:^https?://.*\.jpg$',
1982 'duration': 254,
1983 'timestamp': 1519211149,
1984 'upload_date': '20180221',
1985 },
1986 'params': {
1987 'skip_download': True,
1988 },
1989 },
1990 {
1991 'url': 'http://share-videos.se/auto/video/83645793?uid=13',
1992 'md5': 'b68d276de422ab07ee1d49388103f457',
1993 'info_dict': {
1994 'id': '83645793',
1995 'title': 'Lock up and get excited',
1996 'ext': 'mp4'
1997 },
1998 'skip': 'TODO: fix nested playlists processing in tests',
1999 },
2000 {
2001 # Viqeo embeds
2002 'url': 'https://viqeo.tv/',
2003 'info_dict': {
2004 'id': 'viqeo',
2005 'title': 'All-new video platform',
2006 },
2007 'playlist_count': 6,
2008 },
2009 {
2010 # Squarespace video embed, 2019-08-28
2011 'url': 'http://ootboxford.com',
2012 'info_dict': {
2013 'id': 'Tc7b_JGdZfw',
2014 'title': 'Out of the Blue, at Childish Things 10',
2015 'ext': 'mp4',
2016 'description': 'md5:a83d0026666cf5ee970f8bd1cfd69c7f',
2017 'uploader_id': 'helendouglashouse',
2018 'uploader': 'Helen & Douglas House',
2019 'upload_date': '20140328',
2020 },
2021 'params': {
2022 'skip_download': True,
2023 },
2024 },
2025 # {
2026 # # Zype embed
2027 # 'url': 'https://www.cookscountry.com/episode/554-smoky-barbecue-favorites',
2028 # 'info_dict': {
2029 # 'id': '5b400b834b32992a310622b9',
2030 # 'ext': 'mp4',
2031 # 'title': 'Smoky Barbecue Favorites',
2032 # 'thumbnail': r're:^https?://.*\.jpe?g',
2033 # 'description': 'md5:5ff01e76316bd8d46508af26dc86023b',
2034 # 'upload_date': '20170909',
2035 # 'timestamp': 1504915200,
2036 # },
2037 # 'add_ie': [ZypeIE.ie_key()],
2038 # 'params': {
2039 # 'skip_download': True,
2040 # },
2041 # },
2042 {
2043 # videojs embed
2044 'url': 'https://video.sibnet.ru/shell.php?videoid=3422904',
2045 'info_dict': {
2046 'id': 'shell',
2047 'ext': 'mp4',
2048 'title': 'Доставщик пиццы спросил разрешения сыграть на фортепиано',
2049 'description': 'md5:89209cdc587dab1e4a090453dbaa2cb1',
2050 'thumbnail': r're:^https?://.*\.jpg$',
2051 },
2052 'params': {
2053 'skip_download': True,
2054 },
2055 'expected_warnings': ['Failed to download MPD manifest'],
2056 },
2057 {
2058 # DailyMotion embed with DM.player
2059 'url': 'https://www.beinsports.com/us/copa-del-rey/video/the-locker-room-valencia-beat-barca-in-copa/1203804',
2060 'info_dict': {
2061 'id': 'k6aKkGHd9FJs4mtJN39',
2062 'ext': 'mp4',
2063 'title': 'The Locker Room: Valencia Beat Barca In Copa del Rey Final',
2064 'description': 'This video is private.',
2065 'uploader_id': 'x1jf30l',
2066 'uploader': 'beIN SPORTS USA',
2067 'upload_date': '20190528',
2068 'timestamp': 1559062971,
2069 },
2070 'params': {
2071 'skip_download': True,
2072 },
2073 },
2074 {
2075 # tvopengr:embed
2076 'url': 'https://www.ethnos.gr/World/article/190604/hparosiaxekinoynoisynomiliessthgeneyhmethskiatoypolemoypanoapothnoykrania',
2077 'md5': 'eb0c3995d0a6f18f6538c8e057865d7d',
2078 'info_dict': {
2079 'id': '101119',
2080 'ext': 'mp4',
2081 'display_id': 'oikarpoitondiapragmateyseonhparosias',
2082 'title': 'md5:b979f4d640c568617d6547035528a149',
2083 'description': 'md5:e54fc1977c7159b01cc11cd7d9d85550',
2084 'timestamp': 1641772800,
2085 'upload_date': '20220110',
2086 'thumbnail': 'https://opentv-static.siliconweb.com/imgHandler/1920/70bc39fa-895b-4918-a364-c39d2135fc6d.jpg',
2087
2088 }
2089 },
2090 {
2091 # blogger embed
2092 'url': 'https://blog.tomeuvizoso.net/2019/01/a-panfrost-milestone.html',
2093 'md5': 'f1bc19b6ea1b0fd1d81e84ca9ec467ac',
2094 'info_dict': {
2095 'id': 'BLOGGER-video-3c740e3a49197e16-796',
2096 'ext': 'mp4',
2097 'title': 'Blogger',
2098 'thumbnail': r're:^https?://.*',
2099 },
2100 },
2101 # {
2102 # # TODO: find another test
2103 # # http://schema.org/VideoObject
2104 # 'url': 'https://flipagram.com/f/nyvTSJMKId',
2105 # 'md5': '888dcf08b7ea671381f00fab74692755',
2106 # 'info_dict': {
2107 # 'id': 'nyvTSJMKId',
2108 # 'ext': 'mp4',
2109 # 'title': 'Flipagram by sjuria101 featuring Midnight Memories by One Direction',
2110 # 'description': '#love for cats.',
2111 # 'timestamp': 1461244995,
2112 # 'upload_date': '20160421',
2113 # },
2114 # 'params': {
2115 # 'force_generic_extractor': True,
2116 # },
2117 # },
2118 {
2119 # VHX Embed
2120 'url': 'https://demo.vhx.tv/category-c/videos/file-example-mp4-480-1-5mg-copy',
2121 'info_dict': {
2122 'id': '858208',
2123 'ext': 'mp4',
2124 'title': 'Untitled',
2125 'uploader_id': 'user80538407',
2126 'uploader': 'OTT Videos',
2127 },
2128 },
2129 {
2130 # ArcPublishing PoWa video player
2131 'url': 'https://www.adn.com/politics/2020/11/02/video-senate-candidates-campaign-in-anchorage-on-eve-of-election-day/',
2132 'md5': 'b03b2fac8680e1e5a7cc81a5c27e71b3',
2133 'info_dict': {
2134 'id': '8c99cb6e-b29c-4bc9-9173-7bf9979225ab',
2135 'ext': 'mp4',
2136 'title': 'Senate candidates wave to voters on Anchorage streets',
2137 'description': 'md5:91f51a6511f090617353dc720318b20e',
2138 'timestamp': 1604378735,
2139 'upload_date': '20201103',
2140 'duration': 1581,
2141 },
2142 },
2143 {
2144 # MyChannels SDK embed
2145 # https://www.24kitchen.nl/populair/deskundige-dit-waarom-sommigen-gevoelig-zijn-voor-voedselallergieen
2146 'url': 'https://www.demorgen.be/nieuws/burgemeester-rotterdam-richt-zich-in-videoboodschap-tot-relschoppers-voelt-het-goed~b0bcfd741/',
2147 'md5': '90c0699c37006ef18e198c032d81739c',
2148 'info_dict': {
2149 'id': '194165',
2150 'ext': 'mp4',
2151 'title': 'Burgemeester Aboutaleb spreekt relschoppers toe',
2152 'timestamp': 1611740340,
2153 'upload_date': '20210127',
2154 'duration': 159,
2155 },
2156 },
2157 {
2158 # Simplecast player embed
2159 'url': 'https://www.bio.org/podcast',
2160 'info_dict': {
2161 'id': 'podcast',
2162 'title': 'I AM BIO Podcast | BIO',
2163 },
2164 'playlist_mincount': 52,
2165 },
2166 {
2167 # Sibnet embed (https://help.sibnet.ru/?sibnet_video_embed)
2168 'url': 'https://phpbb3.x-tk.ru/bbcode-video-sibnet-t24.html',
2169 'only_matching': True,
2170 }, {
2171 # WimTv embed player
2172 'url': 'http://www.msmotor.tv/wearefmi-pt-2-2021/',
2173 'info_dict': {
2174 'id': 'wearefmi-pt-2-2021',
2175 'title': '#WEAREFMI – PT.2 – 2021 – MsMotorTV',
2176 },
2177 'playlist_count': 1,
2178 }, {
2179 # KVS Player
2180 'url': 'https://www.kvs-demo.com/videos/105/kelis-4th-of-july/',
2181 'info_dict': {
2182 'id': '105',
2183 'display_id': 'kelis-4th-of-july',
2184 'ext': 'mp4',
2185 'title': 'Kelis - 4th Of July',
2186 'thumbnail': 'https://kvs-demo.com/contents/videos_screenshots/0/105/preview.jpg',
2187 },
2188 'params': {
2189 'skip_download': True,
2190 },
2191 }, {
2192 # KVS Player
2193 'url': 'https://www.kvs-demo.com/embed/105/',
2194 'info_dict': {
2195 'id': '105',
2196 'display_id': 'kelis-4th-of-july',
2197 'ext': 'mp4',
2198 'title': 'Kelis - 4th Of July / Embed Player',
2199 'thumbnail': 'https://kvs-demo.com/contents/videos_screenshots/0/105/preview.jpg',
2200 },
2201 'params': {
2202 'skip_download': True,
2203 },
2204 }, {
2205 # KVS Player
2206 'url': 'https://thisvid.com/videos/french-boy-pantsed/',
2207 'md5': '3397979512c682f6b85b3b04989df224',
2208 'info_dict': {
2209 'id': '2400174',
2210 'display_id': 'french-boy-pantsed',
2211 'ext': 'mp4',
2212 'title': 'French Boy Pantsed - ThisVid.com',
2213 'thumbnail': 'https://media.thisvid.com/contents/videos_screenshots/2400000/2400174/preview.mp4.jpg',
2214 }
2215 }, {
2216 # KVS Player
2217 'url': 'https://thisvid.com/embed/2400174/',
2218 'md5': '3397979512c682f6b85b3b04989df224',
2219 'info_dict': {
2220 'id': '2400174',
2221 'display_id': 'french-boy-pantsed',
2222 'ext': 'mp4',
2223 'title': 'French Boy Pantsed - ThisVid.com',
2224 'thumbnail': 'https://media.thisvid.com/contents/videos_screenshots/2400000/2400174/preview.mp4.jpg',
2225 }
2226 }, {
2227 # KVS Player
2228 'url': 'https://youix.com/video/leningrad-zoj/',
2229 'md5': '94f96ba95706dc3880812b27b7d8a2b8',
2230 'info_dict': {
2231 'id': '18485',
2232 'display_id': 'leningrad-zoj',
2233 'ext': 'mp4',
2234 'title': 'Клип: Ленинград - ЗОЖ скачать, смотреть онлайн | Youix.com',
2235 'thumbnail': 'https://youix.com/contents/videos_screenshots/18000/18485/preview_480x320_youix_com.mp4.jpg',
2236 }
2237 }, {
2238 # KVS Player
2239 'url': 'https://youix.com/embed/18485',
2240 'md5': '94f96ba95706dc3880812b27b7d8a2b8',
2241 'info_dict': {
2242 'id': '18485',
2243 'display_id': 'leningrad-zoj',
2244 'ext': 'mp4',
2245 'title': 'Ленинград - ЗОЖ',
2246 'thumbnail': 'https://youix.com/contents/videos_screenshots/18000/18485/preview_480x320_youix_com.mp4.jpg',
2247 }
2248 }, {
2249 # KVS Player
2250 'url': 'https://bogmedia.org/videos/21217/40-nochey-40-nights-2016/',
2251 'md5': '94166bdb26b4cb1fb9214319a629fc51',
2252 'info_dict': {
2253 'id': '21217',
2254 'display_id': '40-nochey-40-nights-2016',
2255 'ext': 'mp4',
2256 'title': '40 ночей (2016) - BogMedia.org',
2257 'thumbnail': 'https://bogmedia.org/contents/videos_screenshots/21000/21217/preview_480p.mp4.jpg',
2258 }
2259 },
2260 {
2261 # KVS Player (for sites that serve kt_player.js via non-https urls)
2262 'url': 'http://www.camhub.world/embed/389508',
2263 'md5': 'fbe89af4cfb59c8fd9f34a202bb03e32',
2264 'info_dict': {
2265 'id': '389508',
2266 'display_id': 'syren-de-mer-onlyfans-05-07-2020have-a-happy-safe-holiday5f014e68a220979bdb8cd-source',
2267 'ext': 'mp4',
2268 'title': 'Syren De Mer onlyfans_05-07-2020Have_a_happy_safe_holiday5f014e68a220979bdb8cd_source / Embed плеер',
2269 'thumbnail': 'http://www.camhub.world/contents/videos_screenshots/389000/389508/preview.mp4.jpg',
2270 }
2271 },
2272 {
2273 # Reddit-hosted video that will redirect and be processed by RedditIE
2274 # Redirects to https://www.reddit.com/r/videos/comments/6rrwyj/that_small_heart_attack/
2275 'url': 'https://v.redd.it/zv89llsvexdz',
2276 'md5': '87f5f02f6c1582654146f830f21f8662',
2277 'info_dict': {
2278 'id': 'zv89llsvexdz',
2279 'ext': 'mp4',
2280 'timestamp': 1501941939.0,
2281 'title': 'That small heart attack.',
2282 'upload_date': '20170805',
2283 'uploader': 'Antw87'
2284 }
2285 },
2286 {
2287 # 1080p Reddit-hosted video that will redirect and be processed by RedditIE
2288 'url': 'https://v.redd.it/33hgok7dfbz71/',
2289 'md5': '7a1d587940242c9bb3bd6eb320b39258',
2290 'info_dict': {
2291 'id': '33hgok7dfbz71',
2292 'ext': 'mp4',
2293 'title': "The game Didn't want me to Knife that Guy I guess",
2294 'uploader': 'paraf1ve',
2295 'timestamp': 1636788683.0,
2296 'upload_date': '20211113'
2297 }
2298 },
2299 {
2300 # MainStreaming player
2301 'url': 'https://www.lactv.it/2021/10/03/lac-news24-la-settimana-03-10-2021/',
2302 'info_dict': {
2303 'id': 'EUlZfGWkGpOd',
2304 'title': 'La Settimana ',
2305 'description': '03 Ottobre ore 02:00',
2306 'ext': 'mp4',
2307 'live_status': 'not_live',
2308 'thumbnail': r're:https?://[A-Za-z0-9-]*\.msvdn.net/image/\w+/poster',
2309 'duration': 1512
2310 }
2311 },
2312 {
2313 # Multiple gfycat iframe embeds
2314 'url': 'https://www.gezip.net/bbs/board.php?bo_table=entertaine&wr_id=613422',
2315 'info_dict': {
2316 'title': '재이, 윤, 세은 황금 드레스를 입고 빛난다',
2317 'id': 'board'
2318 },
2319 'playlist_count': 8,
2320 },
2321 {
2322 # Multiple gfycat gifs (direct links)
2323 'url': 'https://www.gezip.net/bbs/board.php?bo_table=entertaine&wr_id=612199',
2324 'info_dict': {
2325 'title': '옳게 된 크롭 니트 스테이씨 아이사',
2326 'id': 'board'
2327 },
2328 'playlist_count': 6
2329 },
2330 {
2331 # Multiple gfycat embeds, with uppercase "IFR" in urls
2332 'url': 'https://kkzz.kr/?vid=2295',
2333 'info_dict': {
2334 'title': '지방시 앰버서더 에스파 카리나 움짤',
2335 'id': '?vid=2295'
2336 },
2337 'playlist_count': 9
2338 },
2339 {
2340 # Panopto embeds
2341 'url': 'https://www.monash.edu/learning-teaching/teachhq/learning-technologies/panopto/how-to/insert-a-quiz-into-a-panopto-video',
2342 'info_dict': {
2343 'ext': 'mp4',
2344 'id': '0bd3f16c-824a-436a-8486-ac5900693aef',
2345 'title': 'Quizzes in Panopto',
2346 },
2347 },
2348 {
2349 # Ruutu embed
2350 'url': 'https://www.nelonen.fi/ohjelmat/madventures-suomi/2160731-riku-ja-tunna-lahtevat-peurajahtiin-tv-sta-tutun-biologin-kanssa---metsastysreissu-huipentuu-kasvissyojan-painajaiseen',
2351 'md5': 'a2513a98d3496099e6eced40f7e6a14b',
2352 'info_dict': {
2353 'id': '4044426',
2354 'ext': 'mp4',
2355 'title': 'Riku ja Tunna lähtevät peurajahtiin tv:stä tutun biologin kanssa – metsästysreissu huipentuu kasvissyöjän painajaiseen!',
2356 'thumbnail': r're:^https?://.+\.jpg$',
2357 'duration': 108,
2358 'series': 'Madventures Suomi',
2359 'description': 'md5:aa55b44bd06a1e337a6f1d0b46507381',
2360 'categories': ['Matkailu', 'Elämäntyyli'],
2361 'age_limit': 0,
2362 'upload_date': '20220308',
2363 },
2364 },
2365 {
2366 # Multiple Ruutu embeds
2367 'url': 'https://www.hs.fi/kotimaa/art-2000008762560.html',
2368 'info_dict': {
2369 'title': 'Koronavirus | Epidemiahuippu voi olla Suomessa ohi, mutta koronaviruksen poistamista yleisvaarallisten tautien joukosta harkitaan vasta syksyllä',
2370 'id': 'art-2000008762560'
2371 },
2372 'playlist_count': 3
2373 },
2374 {
2375 # Ruutu embed in hs.fi with a single video
2376 'url': 'https://www.hs.fi/kotimaa/art-2000008793421.html',
2377 'md5': 'f8964e65d8fada6e8a562389bf366bb4',
2378 'info_dict': {
2379 'id': '4081841',
2380 'ext': 'mp4',
2381 'title': 'Puolustusvoimat siirsi panssariajoneuvoja harjoituksiin Niinisaloon 2.5.2022',
2382 'thumbnail': r're:^https?://.+\.jpg$',
2383 'duration': 138,
2384 'age_limit': 0,
2385 'upload_date': '20220504',
2386 },
2387 },
2388 {
2389 # Webpage contains double BOM
2390 'url': 'https://www.filmarkivet.se/movies/paris-d-moll/',
2391 'md5': 'df02cadc719dcc63d43288366f037754',
2392 'info_dict': {
2393 'id': 'paris-d-moll',
2394 'ext': 'mp4',
2395 'upload_date': '20220518',
2396 'title': 'Paris d-moll',
2397 'description': 'md5:319e37ea5542293db37e1e13072fe330',
2398 'thumbnail': 'https://www.filmarkivet.se/wp-content/uploads/parisdmoll2.jpg',
2399 'timestamp': 1652833414,
2400 'age_limit': 0,
2401 }
2402 },
2403 {
2404 'url': 'https://www.mollymovieclub.com/p/interstellar?s=r#details',
2405 'md5': '198bde8bed23d0b23c70725c83c9b6d9',
2406 'info_dict': {
2407 'id': '53602801',
2408 'ext': 'mpga',
2409 'title': 'Interstellar',
2410 'description': 'Listen now | Episode One',
2411 'thumbnail': 'md5:c30d9c83f738e16d8551d7219d321538',
2412 'uploader': 'Molly Movie Club',
2413 'uploader_id': '839621',
2414 },
2415 },
2416 {
2417 'url': 'https://www.blockedandreported.org/p/episode-117-lets-talk-about-depp?s=r',
2418 'md5': 'c0cc44ee7415daeed13c26e5b56d6aa0',
2419 'info_dict': {
2420 'id': '57962052',
2421 'ext': 'mpga',
2422 'title': 'md5:855b2756f0ee10f6723fa00b16266f8d',
2423 'description': 'md5:fe512a5e94136ad260c80bde00ea4eef',
2424 'thumbnail': 'md5:2218f27dfe517bb5ac16c47d0aebac59',
2425 'uploader': 'Blocked and Reported',
2426 'uploader_id': '500230',
2427 },
2428 },
2429 {
2430 'url': 'https://www.skimag.com/video/ski-people-1980/',
2431 'md5': '022a7e31c70620ebec18deeab376ee03',
2432 'info_dict': {
2433 'id': 'YTmgRiNU',
2434 'ext': 'mp4',
2435 'title': '1980 Ski People',
2436 'timestamp': 1610407738,
2437 'description': 'md5:cf9c3d101452c91e141f292b19fe4843',
2438 'thumbnail': 'https://cdn.jwplayer.com/v2/media/YTmgRiNU/poster.jpg?width=720',
2439 'duration': 5688.0,
2440 'upload_date': '20210111',
2441 }
2442 },
2443 {
2444 'note': 'Rumble embed',
2445 'url': 'https://rumble.com/vdmum1-moose-the-dog-helps-girls-dig-a-snow-fort.html',
2446 'md5': '53af34098a7f92c4e51cf0bd1c33f009',
2447 'info_dict': {
2448 'id': 'vb0ofn',
2449 'ext': 'mp4',
2450 'timestamp': 1612662578,
2451 'uploader': 'LovingMontana',
2452 'channel': 'LovingMontana',
2453 'upload_date': '20210207',
2454 'title': 'Winter-loving dog helps girls dig a snow fort ',
2455 'channel_url': 'https://rumble.com/c/c-546523',
2456 'thumbnail': 'https://sp.rmbl.ws/s8/1/5/f/x/x/5fxxb.OvCc.1-small-Moose-The-Dog-Helps-Girls-D.jpg',
2457 'duration': 103,
2458 }
2459 },
2460 {
2461 'note': 'Rumble JS embed',
2462 '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',
2463 'md5': '4701209ac99095592e73dbba21889690',
2464 'info_dict': {
2465 'id': 'v15eqxl',
2466 'ext': 'mp4',
2467 'channel': 'Mr Producer Media',
2468 'duration': 92,
2469 'title': '911 Audio From The Man Who Wanted To Kill Supreme Court Justice Kavanaugh',
2470 'channel_url': 'https://rumble.com/c/RichSementa',
2471 'thumbnail': 'https://sp.rmbl.ws/s8/1/P/j/f/A/PjfAe.OvCc-small-911-Audio-From-The-Man-Who-.jpg',
2472 'timestamp': 1654892716,
2473 'uploader': 'Mr Producer Media',
2474 'upload_date': '20220610',
2475 }
2476 },
2477 {
2478 'note': 'JSON LD with multiple @type',
2479 'url': 'https://www.nu.nl/280161/video/hoe-een-bladvlo-dit-verwoestende-japanse-onkruid-moet-vernietigen.html',
2480 'md5': 'c7949f34f57273013fb7ccb1156393db',
2481 'info_dict': {
2482 'id': 'ipy2AcGL',
2483 'ext': 'mp4',
2484 'description': 'md5:6a9d644bab0dc2dc06849c2505d8383d',
2485 'thumbnail': r're:https://media\.nu\.nl/m/.+\.jpg',
2486 'title': 'Hoe een bladvlo dit verwoestende Japanse onkruid moet vernietigen',
2487 'timestamp': 1586577474,
2488 'upload_date': '20200411',
2489 'age_limit': 0,
2490 'duration': 111.0,
2491 }
2492 },
2493 ]
2494
2495 def report_following_redirect(self, new_url):
2496 """Report information extraction."""
2497 self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
2498
2499 def report_detected(self, name, num=1, note=None):
2500 if num > 1:
2501 name += 's'
2502 elif not num:
2503 return
2504 else:
2505 num = 'a'
2506
2507 self._downloader.write_debug(f'Identified {num} {name}{format_field(note, None, "; %s")}')
2508
2509 def _extract_rss(self, url, video_id, doc):
2510 NS_MAP = {
2511 'itunes': 'http://www.itunes.com/dtds/podcast-1.0.dtd',
2512 }
2513
2514 entries = []
2515 for it in doc.findall('./channel/item'):
2516 next_url = next(
2517 (e.attrib.get('url') for e in it.findall('./enclosure')),
2518 xpath_text(it, 'link', fatal=False))
2519 if not next_url:
2520 continue
2521
2522 guid = try_call(lambda: it.find('guid').text)
2523 if guid:
2524 next_url = smuggle_url(next_url, {'force_videoid': guid})
2525
2526 def itunes(key):
2527 return xpath_text(it, xpath_with_ns(f'./itunes:{key}', NS_MAP), default=None)
2528
2529 entries.append({
2530 '_type': 'url_transparent',
2531 'url': next_url,
2532 'title': try_call(lambda: it.find('title').text),
2533 'description': xpath_text(it, 'description', default=None),
2534 'timestamp': unified_timestamp(xpath_text(it, 'pubDate', default=None)),
2535 'duration': parse_duration(itunes('duration')),
2536 'thumbnail': url_or_none(xpath_attr(it, xpath_with_ns('./itunes:image', NS_MAP), 'href')),
2537 'episode': itunes('title'),
2538 'episode_number': int_or_none(itunes('episode')),
2539 'season_number': int_or_none(itunes('season')),
2540 'age_limit': {'true': 18, 'yes': 18, 'false': 0, 'no': 0}.get((itunes('explicit') or '').lower()),
2541 })
2542
2543 return {
2544 '_type': 'playlist',
2545 'id': url,
2546 'title': try_call(lambda: doc.find('./channel/title').text),
2547 'description': try_call(lambda: doc.find('./channel/description').text),
2548 'entries': entries,
2549 }
2550
2551 def _kvs_getrealurl(self, video_url, license_code):
2552 if not video_url.startswith('function/0/'):
2553 return video_url # not obfuscated
2554
2555 url_path, _, url_query = video_url.partition('?')
2556 urlparts = url_path.split('/')[2:]
2557 license = self._kvs_getlicensetoken(license_code)
2558 newmagic = urlparts[5][:32]
2559
2560 for o in range(len(newmagic) - 1, -1, -1):
2561 new = ''
2562 l = (o + sum(int(n) for n in license[o:])) % 32
2563
2564 for i in range(0, len(newmagic)):
2565 if i == o:
2566 new += newmagic[l]
2567 elif i == l:
2568 new += newmagic[o]
2569 else:
2570 new += newmagic[i]
2571 newmagic = new
2572
2573 urlparts[5] = newmagic + urlparts[5][32:]
2574 return '/'.join(urlparts) + '?' + url_query
2575
2576 def _kvs_getlicensetoken(self, license):
2577 modlicense = license.replace('$', '').replace('0', '1')
2578 center = int(len(modlicense) / 2)
2579 fronthalf = int(modlicense[:center + 1])
2580 backhalf = int(modlicense[center:])
2581
2582 modlicense = str(4 * abs(fronthalf - backhalf))
2583 retval = ''
2584 for o in range(0, center + 1):
2585 for i in range(1, 5):
2586 retval += str((int(license[o + i]) + int(modlicense[o])) % 10)
2587 return retval
2588
2589 def _real_extract(self, url):
2590 if url.startswith('//'):
2591 return self.url_result(self.http_scheme() + url)
2592
2593 parsed_url = urllib.parse.urlparse(url)
2594 if not parsed_url.scheme:
2595 default_search = self.get_param('default_search')
2596 if default_search is None:
2597 default_search = 'fixup_error'
2598
2599 if default_search in ('auto', 'auto_warning', 'fixup_error'):
2600 if re.match(r'^[^\s/]+\.[^\s/]+/', url):
2601 self.report_warning('The url doesn\'t specify the protocol, trying with http')
2602 return self.url_result('http://' + url)
2603 elif default_search != 'fixup_error':
2604 if default_search == 'auto_warning':
2605 if re.match(r'^(?:url|URL)$', url):
2606 raise ExtractorError(
2607 'Invalid URL: %r . Call yt-dlp like this: yt-dlp -v "https://www.youtube.com/watch?v=BaW_jenozKc" ' % url,
2608 expected=True)
2609 else:
2610 self.report_warning(
2611 'Falling back to youtube search for %s . Set --default-search "auto" to suppress this warning.' % url)
2612 return self.url_result('ytsearch:' + url)
2613
2614 if default_search in ('error', 'fixup_error'):
2615 raise ExtractorError(
2616 '%r is not a valid URL. '
2617 'Set --default-search "ytsearch" (or run yt-dlp "ytsearch:%s" ) to search YouTube'
2618 % (url, url), expected=True)
2619 else:
2620 if ':' not in default_search:
2621 default_search += ':'
2622 return self.url_result(default_search + url)
2623
2624 url, smuggled_data = unsmuggle_url(url)
2625 force_videoid = None
2626 is_intentional = smuggled_data and smuggled_data.get('to_generic')
2627 if smuggled_data and 'force_videoid' in smuggled_data:
2628 force_videoid = smuggled_data['force_videoid']
2629 video_id = force_videoid
2630 else:
2631 video_id = self._generic_id(url)
2632
2633 # Some webservers may serve compressed content of rather big size (e.g. gzipped flac)
2634 # making it impossible to download only chunk of the file (yet we need only 512kB to
2635 # test whether it's HTML or not). According to yt-dlp default Accept-Encoding
2636 # that will always result in downloading the whole file that is not desirable.
2637 # Therefore for extraction pass we have to override Accept-Encoding to any in order
2638 # to accept raw bytes and being able to download only a chunk.
2639 # It may probably better to solve this by checking Content-Type for application/octet-stream
2640 # after a HEAD request, but not sure if we can rely on this.
2641 full_response = self._request_webpage(url, video_id, headers={'Accept-Encoding': '*'})
2642 new_url = full_response.geturl()
2643 if url != new_url:
2644 self.report_following_redirect(new_url)
2645 if force_videoid:
2646 new_url = smuggle_url(new_url, {'force_videoid': force_videoid})
2647 return self.url_result(new_url)
2648
2649 info_dict = {
2650 'id': video_id,
2651 'title': self._generic_title(url),
2652 'timestamp': unified_timestamp(full_response.headers.get('Last-Modified'))
2653 }
2654
2655 # Check for direct link to a video
2656 content_type = full_response.headers.get('Content-Type', '').lower()
2657 m = re.match(r'^(?P<type>audio|video|application(?=/(?:ogg$|(?:vnd\.apple\.|x-)?mpegurl)))/(?P<format_id>[^;\s]+)', content_type)
2658 if m:
2659 self.report_detected('direct video link')
2660 format_id = str(m.group('format_id'))
2661 subtitles = {}
2662 if format_id.endswith('mpegurl'):
2663 formats, subtitles = self._extract_m3u8_formats_and_subtitles(url, video_id, 'mp4')
2664 elif format_id.endswith('mpd') or format_id.endswith('dash+xml'):
2665 formats, subtitles = self._extract_mpd_formats_and_subtitles(url, video_id)
2666 elif format_id == 'f4m':
2667 formats = self._extract_f4m_formats(url, video_id)
2668 else:
2669 formats = [{
2670 'format_id': format_id,
2671 'url': url,
2672 'vcodec': 'none' if m.group('type') == 'audio' else None
2673 }]
2674 info_dict['direct'] = True
2675 self._sort_formats(formats)
2676 info_dict['formats'] = formats
2677 info_dict['subtitles'] = subtitles
2678 return info_dict
2679
2680 if not self.get_param('test', False) and not is_intentional:
2681 force = self.get_param('force_generic_extractor', False)
2682 self.report_warning('%s generic information extractor' % ('Forcing' if force else 'Falling back on'))
2683
2684 first_bytes = full_response.read(512)
2685
2686 # Is it an M3U playlist?
2687 if first_bytes.startswith(b'#EXTM3U'):
2688 self.report_detected('M3U playlist')
2689 info_dict['formats'], info_dict['subtitles'] = self._extract_m3u8_formats_and_subtitles(url, video_id, 'mp4')
2690 self._sort_formats(info_dict['formats'])
2691 return info_dict
2692
2693 # Maybe it's a direct link to a video?
2694 # Be careful not to download the whole thing!
2695 if not is_html(first_bytes):
2696 self.report_warning(
2697 'URL could be a direct video link, returning it as such.')
2698 info_dict.update({
2699 'direct': True,
2700 'url': url,
2701 })
2702 return info_dict
2703
2704 webpage = self._webpage_read_content(
2705 full_response, url, video_id, prefix=first_bytes)
2706
2707 if '<title>DPG Media Privacy Gate</title>' in webpage:
2708 webpage = self._download_webpage(url, video_id)
2709
2710 self.report_extraction(video_id)
2711
2712 # Is it an RSS feed, a SMIL file, an XSPF playlist or a MPD manifest?
2713 try:
2714 try:
2715 doc = compat_etree_fromstring(webpage)
2716 except xml.etree.ElementTree.ParseError:
2717 doc = compat_etree_fromstring(webpage.encode('utf-8'))
2718 if doc.tag == 'rss':
2719 self.report_detected('RSS feed')
2720 return self._extract_rss(url, video_id, doc)
2721 elif doc.tag == 'SmoothStreamingMedia':
2722 info_dict['formats'], info_dict['subtitles'] = self._parse_ism_formats_and_subtitles(doc, url)
2723 self.report_detected('ISM manifest')
2724 self._sort_formats(info_dict['formats'])
2725 return info_dict
2726 elif re.match(r'^(?:{[^}]+})?smil$', doc.tag):
2727 smil = self._parse_smil(doc, url, video_id)
2728 self.report_detected('SMIL file')
2729 self._sort_formats(smil['formats'])
2730 return smil
2731 elif doc.tag == '{http://xspf.org/ns/0/}playlist':
2732 self.report_detected('XSPF playlist')
2733 return self.playlist_result(
2734 self._parse_xspf(
2735 doc, video_id, xspf_url=url,
2736 xspf_base_url=full_response.geturl()),
2737 video_id)
2738 elif re.match(r'(?i)^(?:{[^}]+})?MPD$', doc.tag):
2739 info_dict['formats'], info_dict['subtitles'] = self._parse_mpd_formats_and_subtitles(
2740 doc,
2741 mpd_base_url=full_response.geturl().rpartition('/')[0],
2742 mpd_url=url)
2743 self.report_detected('DASH manifest')
2744 self._sort_formats(info_dict['formats'])
2745 return info_dict
2746 elif re.match(r'^{http://ns\.adobe\.com/f4m/[12]\.0}manifest$', doc.tag):
2747 info_dict['formats'] = self._parse_f4m_formats(doc, url, video_id)
2748 self.report_detected('F4M manifest')
2749 self._sort_formats(info_dict['formats'])
2750 return info_dict
2751 except xml.etree.ElementTree.ParseError:
2752 pass
2753
2754 info_dict.update({
2755 # it's tempting to parse this further, but you would
2756 # have to take into account all the variations like
2757 # Video Title - Site Name
2758 # Site Name | Video Title
2759 # Video Title - Tagline | Site Name
2760 # and so on and so forth; it's just not practical
2761 'title': (self._og_search_title(webpage, default=None)
2762 or self._html_extract_title(webpage, 'video title', default='video')),
2763 'description': self._og_search_description(webpage, default=None),
2764 'thumbnail': self._og_search_thumbnail(webpage, default=None),
2765 'age_limit': self._rta_search(webpage),
2766 })
2767
2768 domain_name = self._search_regex(r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
2769
2770 # Sometimes embedded video player is hidden behind percent encoding
2771 # (e.g. https://github.com/ytdl-org/youtube-dl/issues/2448)
2772 # Unescaping the whole page allows to handle those cases in a generic way
2773 # FIXME: unescaping the whole page may break URLs, commenting out for now.
2774 # There probably should be a second run of generic extractor on unescaped webpage.
2775 # webpage = urllib.parse.unquote(webpage)
2776
2777 # Unescape squarespace embeds to be detected by generic extractor,
2778 # see https://github.com/ytdl-org/youtube-dl/issues/21294
2779 webpage = re.sub(
2780 r'<div[^>]+class=[^>]*?\bsqs-video-wrapper\b[^>]*>',
2781 lambda x: unescapeHTML(x.group(0)), webpage)
2782
2783 # TODO: Move to respective extractors
2784 self._downloader.write_debug('Looking for Brightcove embeds')
2785 bc_urls = BrightcoveLegacyIE._extract_brightcove_urls(webpage)
2786 if bc_urls:
2787 entries = [{
2788 '_type': 'url',
2789 'url': smuggle_url(bc_url, {'Referer': url}),
2790 'ie_key': 'BrightcoveLegacy'
2791 } for bc_url in bc_urls]
2792
2793 return {
2794 '_type': 'playlist',
2795 'title': info_dict['title'],
2796 'id': video_id,
2797 'entries': entries,
2798 }
2799 bc_urls = BrightcoveNewIE._extract_brightcove_urls(self, webpage)
2800 if bc_urls:
2801 return self.playlist_from_matches(
2802 bc_urls, video_id, info_dict['title'],
2803 getter=lambda x: smuggle_url(x, {'referrer': url}),
2804 ie='BrightcoveNew')
2805
2806 self._downloader.write_debug('Looking for embeds')
2807 embeds = []
2808 for ie in gen_extractor_classes():
2809 gen = ie.extract_from_webpage(self._downloader, url, webpage)
2810 current_embeds = []
2811 try:
2812 while True:
2813 current_embeds.append(next(gen))
2814 except self.StopExtraction:
2815 self.report_detected(f'{ie.IE_NAME} exclusive embed', len(current_embeds),
2816 embeds and 'discarding other embeds')
2817 embeds = current_embeds
2818 break
2819 except StopIteration:
2820 self.report_detected(f'{ie.IE_NAME} embed', len(current_embeds))
2821 embeds.extend(current_embeds)
2822
2823 del current_embeds
2824 if len(embeds) == 1:
2825 return {**info_dict, **embeds[0]}
2826 elif embeds:
2827 return self.playlist_result(embeds, **info_dict)
2828
2829 jwplayer_data = self._find_jwplayer_data(
2830 webpage, video_id, transform_source=js_to_json)
2831 if jwplayer_data:
2832 if isinstance(jwplayer_data.get('playlist'), str):
2833 self.report_detected('JW Player playlist')
2834 return {
2835 **info_dict,
2836 '_type': 'url',
2837 'ie_key': 'JWPlatform',
2838 'url': jwplayer_data['playlist'],
2839 }
2840 try:
2841 info = self._parse_jwplayer_data(
2842 jwplayer_data, video_id, require_title=False, base_url=url)
2843 self.report_detected('JW Player data')
2844 return merge_dicts(info, info_dict)
2845 except ExtractorError:
2846 # See https://github.com/ytdl-org/youtube-dl/pull/16735
2847 pass
2848
2849 # Video.js embed
2850 mobj = re.search(
2851 r'(?s)\bvideojs\s*\(.+?([a-zA-Z0-9_$]+)\.src\s*\(\s*((?:\[.+?\]|{.+?}))\s*\)\s*;',
2852 webpage)
2853 if mobj is not None:
2854 varname = mobj.group(1)
2855 sources = self._parse_json(
2856 mobj.group(2), video_id, transform_source=js_to_json,
2857 fatal=False) or []
2858 if not isinstance(sources, list):
2859 sources = [sources]
2860 formats = []
2861 subtitles = {}
2862 for source in sources:
2863 src = source.get('src')
2864 if not src or not isinstance(src, str):
2865 continue
2866 src = urllib.parse.urljoin(url, src)
2867 src_type = source.get('type')
2868 if isinstance(src_type, str):
2869 src_type = src_type.lower()
2870 ext = determine_ext(src).lower()
2871 if src_type == 'video/youtube':
2872 return self.url_result(src, YoutubeIE.ie_key())
2873 if src_type == 'application/dash+xml' or ext == 'mpd':
2874 fmts, subs = self._extract_mpd_formats_and_subtitles(
2875 src, video_id, mpd_id='dash', fatal=False)
2876 formats.extend(fmts)
2877 self._merge_subtitles(subs, target=subtitles)
2878 elif src_type == 'application/x-mpegurl' or ext == 'm3u8':
2879 fmts, subs = self._extract_m3u8_formats_and_subtitles(
2880 src, video_id, 'mp4', entry_protocol='m3u8_native',
2881 m3u8_id='hls', fatal=False)
2882 formats.extend(fmts)
2883 self._merge_subtitles(subs, target=subtitles)
2884 else:
2885 formats.append({
2886 'url': src,
2887 'ext': (mimetype2ext(src_type)
2888 or ext if ext in KNOWN_EXTENSIONS else 'mp4'),
2889 'http_headers': {
2890 'Referer': full_response.geturl(),
2891 },
2892 })
2893 # https://docs.videojs.com/player#addRemoteTextTrack
2894 # https://html.spec.whatwg.org/multipage/media.html#htmltrackelement
2895 for sub_match in re.finditer(rf'(?s){re.escape(varname)}' r'\.addRemoteTextTrack\(({.+?})\s*,\s*(?:true|false)\)', webpage):
2896 sub = self._parse_json(
2897 sub_match.group(1), video_id, transform_source=js_to_json, fatal=False) or {}
2898 src = str_or_none(sub.get('src'))
2899 if not src:
2900 continue
2901 subtitles.setdefault(dict_get(sub, ('language', 'srclang')) or 'und', []).append({
2902 'url': urllib.parse.urljoin(url, src),
2903 'name': sub.get('label'),
2904 'http_headers': {
2905 'Referer': full_response.geturl(),
2906 },
2907 })
2908 if formats or subtitles:
2909 self.report_detected('video.js embed')
2910 self._sort_formats(formats)
2911 info_dict['formats'] = formats
2912 info_dict['subtitles'] = subtitles
2913 return info_dict
2914
2915 # Looking for http://schema.org/VideoObject
2916 json_ld = self._search_json_ld(webpage, video_id, default={})
2917 if json_ld.get('url') not in (url, None):
2918 self.report_detected('JSON LD')
2919 return merge_dicts({
2920 '_type': 'url_transparent',
2921 'url': smuggle_url(json_ld['url'], {'force_videoid': video_id, 'to_generic': True}),
2922 }, json_ld, info_dict)
2923
2924 def check_video(vurl):
2925 if YoutubeIE.suitable(vurl):
2926 return True
2927 if RtmpIE.suitable(vurl):
2928 return True
2929 vpath = urllib.parse.urlparse(vurl).path
2930 vext = determine_ext(vpath, None)
2931 return vext not in (None, 'swf', 'png', 'jpg', 'srt', 'sbv', 'sub', 'vtt', 'ttml', 'js', 'xml')
2932
2933 def filter_video(urls):
2934 return list(filter(check_video, urls))
2935
2936 # Start with something easy: JW Player in SWFObject
2937 found = filter_video(re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage))
2938 if found:
2939 self.report_detected('JW Player in SFWObject')
2940 else:
2941 # Look for gorilla-vid style embedding
2942 found = filter_video(re.findall(r'''(?sx)
2943 (?:
2944 jw_plugins|
2945 JWPlayerOptions|
2946 jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
2947 )
2948 .*?
2949 ['"]?file['"]?\s*:\s*["\'](.*?)["\']''', webpage))
2950 if found:
2951 self.report_detected('JW Player embed')
2952 if not found:
2953 # Look for generic KVS player
2954 found = re.search(r'<script [^>]*?src="https?://.+?/kt_player\.js\?v=(?P<ver>(?P<maj_ver>\d+)(\.\d+)+)".*?>', webpage)
2955 if found:
2956 self.report_detected('KWS Player')
2957 if found.group('maj_ver') not in ['4', '5']:
2958 self.report_warning('Untested major version (%s) in player engine--Download may fail.' % found.group('ver'))
2959 flashvars = re.search(r'(?ms)<script.*?>.*?var\s+flashvars\s*=\s*(\{.*?\});.*?</script>', webpage)
2960 flashvars = self._parse_json(flashvars.group(1), video_id, transform_source=js_to_json)
2961
2962 # extract the part after the last / as the display_id from the
2963 # canonical URL.
2964 display_id = self._search_regex(
2965 r'(?:<link href="https?://[^"]+/(.+?)/?" rel="canonical"\s*/?>'
2966 r'|<link rel="canonical" href="https?://[^"]+/(.+?)/?"\s*/?>)',
2967 webpage, 'display_id', fatal=False
2968 )
2969 title = self._html_search_regex(r'<(?:h1|title)>(?:Video: )?(.+?)</(?:h1|title)>', webpage, 'title')
2970
2971 thumbnail = flashvars['preview_url']
2972 if thumbnail.startswith('//'):
2973 protocol, _, _ = url.partition('/')
2974 thumbnail = protocol + thumbnail
2975
2976 url_keys = list(filter(re.compile(r'video_url|video_alt_url\d*').fullmatch, flashvars.keys()))
2977 formats = []
2978 for key in url_keys:
2979 if '/get_file/' not in flashvars[key]:
2980 continue
2981 format_id = flashvars.get(f'{key}_text', key)
2982 formats.append({
2983 'url': self._kvs_getrealurl(flashvars[key], flashvars['license_code']),
2984 'format_id': format_id,
2985 'ext': 'mp4',
2986 **(parse_resolution(format_id) or parse_resolution(flashvars[key]))
2987 })
2988 if not formats[-1].get('height'):
2989 formats[-1]['quality'] = 1
2990
2991 self._sort_formats(formats)
2992
2993 return {
2994 'id': flashvars['video_id'],
2995 'display_id': display_id,
2996 'title': title,
2997 'thumbnail': thumbnail,
2998 'formats': formats,
2999 }
3000 if not found:
3001 # Broaden the search a little bit
3002 found = filter_video(re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage))
3003 if found:
3004 self.report_detected('video file')
3005 if not found:
3006 # Broaden the findall a little bit: JWPlayer JS loader
3007 found = filter_video(re.findall(
3008 r'[^A-Za-z0-9]?(?:file|video_url)["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage))
3009 if found:
3010 self.report_detected('JW Player JS loader')
3011 if not found:
3012 # Flow player
3013 found = filter_video(re.findall(r'''(?xs)
3014 flowplayer\("[^"]+",\s*
3015 \{[^}]+?\}\s*,
3016 \s*\{[^}]+? ["']?clip["']?\s*:\s*\{\s*
3017 ["']?url["']?\s*:\s*["']([^"']+)["']
3018 ''', webpage))
3019 if found:
3020 self.report_detected('Flow Player')
3021 if not found:
3022 # Cinerama player
3023 found = re.findall(
3024 r"cinerama\.embedPlayer\(\s*\'[^']+\',\s*'([^']+)'", webpage)
3025 if found:
3026 self.report_detected('Cinerama player')
3027 if not found:
3028 # Try to find twitter cards info
3029 # twitter:player:stream should be checked before twitter:player since
3030 # it is expected to contain a raw stream (see
3031 # https://dev.twitter.com/cards/types/player#On_twitter.com_via_desktop_browser)
3032 found = filter_video(re.findall(
3033 r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage))
3034 if found:
3035 self.report_detected('Twitter card')
3036 if not found:
3037 # We look for Open Graph info:
3038 # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
3039 m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
3040 # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
3041 if m_video_type is not None:
3042 found = filter_video(re.findall(r'<meta.*?property="og:(?:video|audio)".*?content="(.*?)"', webpage))
3043 if found:
3044 self.report_detected('Open Graph video info')
3045 if not found:
3046 REDIRECT_REGEX = r'[0-9]{,2};\s*(?:URL|url)=\'?([^\'"]+)'
3047 found = re.search(
3048 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
3049 r'(?:[a-z-]+="[^"]+"\s+)*?content="%s' % REDIRECT_REGEX,
3050 webpage)
3051 if not found:
3052 # Look also in Refresh HTTP header
3053 refresh_header = full_response.headers.get('Refresh')
3054 if refresh_header:
3055 found = re.search(REDIRECT_REGEX, refresh_header)
3056 if found:
3057 new_url = urllib.parse.urljoin(url, unescapeHTML(found.group(1)))
3058 if new_url != url:
3059 self.report_following_redirect(new_url)
3060 return {
3061 '_type': 'url',
3062 'url': new_url,
3063 }
3064 else:
3065 found = None
3066
3067 if not found:
3068 # twitter:player is a https URL to iframe player that may or may not
3069 # be supported by yt-dlp thus this is checked the very last (see
3070 # https://dev.twitter.com/cards/types/player#On_twitter.com_via_desktop_browser)
3071 embed_url = self._html_search_meta('twitter:player', webpage, default=None)
3072 if embed_url and embed_url != url:
3073 self.report_detected('twitter:player iframe')
3074 return self.url_result(embed_url)
3075
3076 if not found:
3077 raise UnsupportedError(url)
3078
3079 entries = []
3080 for video_url in orderedSet(found):
3081 video_url = unescapeHTML(video_url)
3082 video_url = video_url.replace('\\/', '/')
3083 video_url = urllib.parse.urljoin(url, video_url)
3084 video_id = urllib.parse.unquote(os.path.basename(video_url))
3085
3086 # Sometimes, jwplayer extraction will result in a YouTube URL
3087 if YoutubeIE.suitable(video_url):
3088 entries.append(self.url_result(video_url, 'Youtube'))
3089 continue
3090
3091 video_id = os.path.splitext(video_id)[0]
3092 headers = {
3093 'referer': full_response.geturl()
3094 }
3095
3096 entry_info_dict = {
3097 'id': video_id,
3098 'uploader': domain_name,
3099 'title': info_dict['title'],
3100 'age_limit': info_dict['age_limit'],
3101 'http_headers': headers,
3102 }
3103
3104 if RtmpIE.suitable(video_url):
3105 entry_info_dict.update({
3106 '_type': 'url_transparent',
3107 'ie_key': RtmpIE.ie_key(),
3108 'url': video_url,
3109 })
3110 entries.append(entry_info_dict)
3111 continue
3112
3113 ext = determine_ext(video_url)
3114 if ext == 'smil':
3115 entry_info_dict = {**self._extract_smil_info(video_url, video_id), **entry_info_dict}
3116 elif ext == 'xspf':
3117 return self.playlist_result(self._extract_xspf_playlist(video_url, video_id), video_id)
3118 elif ext == 'm3u8':
3119 entry_info_dict['formats'], entry_info_dict['subtitles'] = self._extract_m3u8_formats_and_subtitles(video_url, video_id, ext='mp4', headers=headers)
3120 elif ext == 'mpd':
3121 entry_info_dict['formats'], entry_info_dict['subtitles'] = self._extract_mpd_formats_and_subtitles(video_url, video_id, headers=headers)
3122 elif ext == 'f4m':
3123 entry_info_dict['formats'] = self._extract_f4m_formats(video_url, video_id, headers=headers)
3124 elif re.search(r'(?i)\.(?:ism|smil)/manifest', video_url) and video_url != url:
3125 # Just matching .ism/manifest is not enough to be reliably sure
3126 # whether it's actually an ISM manifest or some other streaming
3127 # manifest since there are various streaming URL formats
3128 # possible (see [1]) as well as some other shenanigans like
3129 # .smil/manifest URLs that actually serve an ISM (see [2]) and
3130 # so on.
3131 # Thus the most reasonable way to solve this is to delegate
3132 # to generic extractor in order to look into the contents of
3133 # the manifest itself.
3134 # 1. https://azure.microsoft.com/en-us/documentation/articles/media-services-deliver-content-overview/#streaming-url-formats
3135 # 2. https://svs.itworkscdn.net/lbcivod/smil:itwfcdn/lbci/170976.smil/Manifest
3136 entry_info_dict = self.url_result(
3137 smuggle_url(video_url, {'to_generic': True}),
3138 GenericIE.ie_key())
3139 else:
3140 entry_info_dict['url'] = video_url
3141
3142 if entry_info_dict.get('formats'):
3143 self._sort_formats(entry_info_dict['formats'])
3144
3145 entries.append(entry_info_dict)
3146
3147 if len(entries) == 1:
3148 return merge_dicts(entries[0], info_dict)
3149 else:
3150 for num, e in enumerate(entries, start=1):
3151 # 'url' results don't have a title
3152 if e.get('title') is not None:
3153 e['title'] = '%s (%d)' % (e['title'], num)
3154 return {
3155 '_type': 'playlist',
3156 'entries': entries,
3157 }