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