]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/generic.py
[glomex] Add new extractors (#1979)
[yt-dlp.git] / yt_dlp / extractor / generic.py
1 # coding: utf-8
2
3 from __future__ import unicode_literals
4
5 import os
6 import re
7 import sys
8
9 from .common import InfoExtractor
10 from .youtube import YoutubeIE
11 from ..compat import (
12 compat_etree_fromstring,
13 compat_str,
14 compat_urllib_parse_unquote,
15 compat_urlparse,
16 compat_xml_parse_error,
17 )
18 from ..utils import (
19 determine_ext,
20 ExtractorError,
21 float_or_none,
22 HEADRequest,
23 int_or_none,
24 is_html,
25 js_to_json,
26 KNOWN_EXTENSIONS,
27 merge_dicts,
28 mimetype2ext,
29 orderedSet,
30 parse_duration,
31 parse_resolution,
32 sanitized_Request,
33 smuggle_url,
34 unescapeHTML,
35 unified_timestamp,
36 unsmuggle_url,
37 UnsupportedError,
38 url_or_none,
39 xpath_attr,
40 xpath_text,
41 xpath_with_ns,
42 )
43 from .commonprotocols import RtmpIE
44 from .brightcove import (
45 BrightcoveLegacyIE,
46 BrightcoveNewIE,
47 )
48 from .nexx import (
49 NexxIE,
50 NexxEmbedIE,
51 )
52 from .nbc import NBCSportsVPlayerIE
53 from .ooyala import OoyalaIE
54 from .rutv import RUTVIE
55 from .tvc import TVCIE
56 from .sportbox import SportBoxIE
57 from .myvi import MyviIE
58 from .condenast import CondeNastIE
59 from .udn import UDNEmbedIE
60 from .senategov import SenateISVPIE
61 from .svt import SVTIE
62 from .pornhub import PornHubIE
63 from .xhamster import XHamsterEmbedIE
64 from .tnaflix import TNAFlixNetworkEmbedIE
65 from .drtuber import DrTuberIE
66 from .redtube import RedTubeIE
67 from .tube8 import Tube8IE
68 from .mofosex import MofosexEmbedIE
69 from .spankwire import SpankwireIE
70 from .youporn import YouPornIE
71 from .vimeo import (
72 VimeoIE,
73 VHXEmbedIE,
74 )
75 from .dailymotion import DailymotionIE
76 from .dailymail import DailyMailIE
77 from .onionstudios import OnionStudiosIE
78 from .viewlift import ViewLiftEmbedIE
79 from .mtv import MTVServicesEmbeddedIE
80 from .pladform import PladformIE
81 from .videomore import VideomoreIE
82 from .webcaster import WebcasterFeedIE
83 from .googledrive import GoogleDriveIE
84 from .jwplatform import JWPlatformIE
85 from .digiteka import DigitekaIE
86 from .arkena import ArkenaIE
87 from .instagram import InstagramIE
88 from .threeqsdn import ThreeQSDNIE
89 from .theplatform import ThePlatformIE
90 from .kaltura import KalturaIE
91 from .eagleplatform import EaglePlatformIE
92 from .facebook import FacebookIE
93 from .soundcloud import SoundcloudEmbedIE
94 from .tunein import TuneInBaseIE
95 from .vbox7 import Vbox7IE
96 from .dbtv import DBTVIE
97 from .piksel import PikselIE
98 from .videa import VideaIE
99 from .twentymin import TwentyMinutenIE
100 from .ustream import UstreamIE
101 from .arte import ArteTVEmbedIE
102 from .videopress import VideoPressIE
103 from .rutube import RutubeIE
104 from .glomex import GlomexEmbedIE
105 from .limelight import LimelightBaseIE
106 from .anvato import AnvatoIE
107 from .washingtonpost import WashingtonPostIE
108 from .wistia import WistiaIE
109 from .mediaset import MediasetIE
110 from .joj import JojIE
111 from .megaphone import MegaphoneIE
112 from .vzaar import VzaarIE
113 from .channel9 import Channel9IE
114 from .vshare import VShareIE
115 from .mediasite import MediasiteIE
116 from .springboardplatform import SpringboardPlatformIE
117 from .yapfiles import YapFilesIE
118 from .vice import ViceIE
119 from .xfileshare import XFileShareIE
120 from .cloudflarestream import CloudflareStreamIE
121 from .peertube import PeerTubeIE
122 from .teachable import TeachableIE
123 from .indavideo import IndavideoEmbedIE
124 from .apa import APAIE
125 from .foxnews import FoxNewsIE
126 from .viqeo import ViqeoIE
127 from .expressen import ExpressenIE
128 from .zype import ZypeIE
129 from .odnoklassniki import OdnoklassnikiIE
130 from .vk import VKIE
131 from .kinja import KinjaEmbedIE
132 from .gedidigital import GediDigitalIE
133 from .rcs import RCSEmbedsIE
134 from .bitchute import BitChuteIE
135 from .rumble import RumbleEmbedIE
136 from .arcpublishing import ArcPublishingIE
137 from .medialaan import MedialaanIE
138 from .simplecast import SimplecastIE
139 from .wimtv import WimTVIE
140 from .tvp import TVPEmbedIE
141 from .blogger import BloggerIE
142 from .mainstreaming import MainStreamingIE
143 from .gfycat import GfycatIE
144
145
146 class GenericIE(InfoExtractor):
147 IE_DESC = 'Generic downloader that works on some sites'
148 _VALID_URL = r'.*'
149 IE_NAME = 'generic'
150 _TESTS = [
151 # Direct link to a video
152 {
153 'url': 'http://media.w3.org/2010/05/sintel/trailer.mp4',
154 'md5': '67d406c2bcb6af27fa886f31aa934bbe',
155 'info_dict': {
156 'id': 'trailer',
157 'ext': 'mp4',
158 'title': 'trailer',
159 'upload_date': '20100513',
160 }
161 },
162 # Direct link to media delivered compressed (until Accept-Encoding is *)
163 {
164 'url': 'http://calimero.tk/muzik/FictionJunction-Parallel_Hearts.flac',
165 'md5': '128c42e68b13950268b648275386fc74',
166 'info_dict': {
167 'id': 'FictionJunction-Parallel_Hearts',
168 'ext': 'flac',
169 'title': 'FictionJunction-Parallel_Hearts',
170 'upload_date': '20140522',
171 },
172 'expected_warnings': [
173 'URL could be a direct video link, returning it as such.'
174 ],
175 'skip': 'URL invalid',
176 },
177 # Direct download with broken HEAD
178 {
179 'url': 'http://ai-radio.org:8000/radio.opus',
180 'info_dict': {
181 'id': 'radio',
182 'ext': 'opus',
183 'title': 'radio',
184 },
185 'params': {
186 'skip_download': True, # infinite live stream
187 },
188 'expected_warnings': [
189 r'501.*Not Implemented',
190 r'400.*Bad Request',
191 ],
192 },
193 # Direct link with incorrect MIME type
194 {
195 'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
196 'md5': '4ccbebe5f36706d85221f204d7eb5913',
197 'info_dict': {
198 'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
199 'id': '5_Lennart_Poettering_-_Systemd',
200 'ext': 'webm',
201 'title': '5_Lennart_Poettering_-_Systemd',
202 'upload_date': '20141120',
203 },
204 'expected_warnings': [
205 'URL could be a direct video link, returning it as such.'
206 ]
207 },
208 # RSS feed
209 {
210 'url': 'http://phihag.de/2014/youtube-dl/rss2.xml',
211 'info_dict': {
212 'id': 'http://phihag.de/2014/youtube-dl/rss2.xml',
213 'title': 'Zero Punctuation',
214 'description': 're:.*groundbreaking video review series.*'
215 },
216 'playlist_mincount': 11,
217 },
218 # RSS feed with enclosure
219 {
220 'url': 'http://podcastfeeds.nbcnews.com/audio/podcast/MSNBC-MADDOW-NETCAST-M4V.xml',
221 'info_dict': {
222 'id': 'http://podcastfeeds.nbcnews.com/nbcnews/video/podcast/MSNBC-MADDOW-NETCAST-M4V.xml',
223 'title': 'MSNBC Rachel Maddow (video)',
224 'description': 're:.*her unique approach to storytelling.*',
225 },
226 'playlist': [{
227 'info_dict': {
228 'ext': 'mov',
229 'id': 'pdv_maddow_netcast_mov-12-03-2020-223726',
230 'title': 'MSNBC Rachel Maddow (video) - 12-03-2020-223726',
231 'description': 're:.*her unique approach to storytelling.*',
232 'upload_date': '20201204',
233 },
234 }],
235 },
236 # RSS feed with item with description and thumbnails
237 {
238 'url': 'https://anchor.fm/s/dd00e14/podcast/rss',
239 'info_dict': {
240 'id': 'https://anchor.fm/s/dd00e14/podcast/rss',
241 'title': 're:.*100% Hydrogen.*',
242 'description': 're:.*In this episode.*',
243 },
244 'playlist': [{
245 'info_dict': {
246 'ext': 'm4a',
247 'id': 'c1c879525ce2cb640b344507e682c36d',
248 'title': 're:Hydrogen!',
249 'description': 're:.*In this episode we are going.*',
250 'timestamp': 1567977776,
251 'upload_date': '20190908',
252 'duration': 459,
253 'thumbnail': r're:^https?://.*\.jpg$',
254 'episode_number': 1,
255 'season_number': 1,
256 'age_limit': 0,
257 },
258 }],
259 'params': {
260 'skip_download': True,
261 },
262 },
263 # RSS feed with enclosures and unsupported link URLs
264 {
265 'url': 'http://www.hellointernet.fm/podcast?format=rss',
266 'info_dict': {
267 'id': 'http://www.hellointernet.fm/podcast?format=rss',
268 'description': 'CGP Grey and Brady Haran talk about YouTube, life, work, whatever.',
269 'title': 'Hello Internet',
270 },
271 'playlist_mincount': 100,
272 },
273 # SMIL from http://videolectures.net/promogram_igor_mekjavic_eng
274 {
275 'url': 'http://videolectures.net/promogram_igor_mekjavic_eng/video/1/smil.xml',
276 'info_dict': {
277 'id': 'smil',
278 'ext': 'mp4',
279 'title': 'Automatics, robotics and biocybernetics',
280 'description': 'md5:815fc1deb6b3a2bff99de2d5325be482',
281 'upload_date': '20130627',
282 'formats': 'mincount:16',
283 'subtitles': 'mincount:1',
284 },
285 'params': {
286 'force_generic_extractor': True,
287 'skip_download': True,
288 },
289 },
290 # SMIL from http://www1.wdr.de/mediathek/video/livestream/index.html
291 {
292 'url': 'http://metafilegenerator.de/WDR/WDR_FS/hds/hds.smil',
293 'info_dict': {
294 'id': 'hds',
295 'ext': 'flv',
296 'title': 'hds',
297 'formats': 'mincount:1',
298 },
299 'params': {
300 'skip_download': True,
301 },
302 },
303 # SMIL from https://www.restudy.dk/video/play/id/1637
304 {
305 'url': 'https://www.restudy.dk/awsmedia/SmilDirectory/video_1637.xml',
306 'info_dict': {
307 'id': 'video_1637',
308 'ext': 'flv',
309 'title': 'video_1637',
310 'formats': 'mincount:3',
311 },
312 'params': {
313 'skip_download': True,
314 },
315 },
316 # SMIL from http://adventure.howstuffworks.com/5266-cool-jobs-iditarod-musher-video.htm
317 {
318 'url': 'http://services.media.howstuffworks.com/videos/450221/smil-service.smil',
319 'info_dict': {
320 'id': 'smil-service',
321 'ext': 'flv',
322 'title': 'smil-service',
323 'formats': 'mincount:1',
324 },
325 'params': {
326 'skip_download': True,
327 },
328 },
329 # SMIL from http://new.livestream.com/CoheedandCambria/WebsterHall/videos/4719370
330 {
331 'url': 'http://api.new.livestream.com/accounts/1570303/events/1585861/videos/4719370.smil',
332 'info_dict': {
333 'id': '4719370',
334 'ext': 'mp4',
335 'title': '571de1fd-47bc-48db-abf9-238872a58d1f',
336 'formats': 'mincount:3',
337 },
338 'params': {
339 'skip_download': True,
340 },
341 },
342 # XSPF playlist from http://www.telegraaf.nl/tv/nieuws/binnenland/24353229/__Tikibad_ontruimd_wegens_brand__.html
343 {
344 'url': 'http://www.telegraaf.nl/xml/playlist/2015/8/7/mZlp2ctYIUEB.xspf',
345 'info_dict': {
346 'id': 'mZlp2ctYIUEB',
347 'ext': 'mp4',
348 'title': 'Tikibad ontruimd wegens brand',
349 'description': 'md5:05ca046ff47b931f9b04855015e163a4',
350 'thumbnail': r're:^https?://.*\.jpg$',
351 'duration': 33,
352 },
353 'params': {
354 'skip_download': True,
355 },
356 },
357 # MPD from http://dash-mse-test.appspot.com/media.html
358 {
359 'url': 'http://yt-dash-mse-test.commondatastorage.googleapis.com/media/car-20120827-manifest.mpd',
360 'md5': '4b57baab2e30d6eb3a6a09f0ba57ef53',
361 'info_dict': {
362 'id': 'car-20120827-manifest',
363 'ext': 'mp4',
364 'title': 'car-20120827-manifest',
365 'formats': 'mincount:9',
366 'upload_date': '20130904',
367 },
368 },
369 # m3u8 served with Content-Type: audio/x-mpegURL; charset=utf-8
370 {
371 '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',
372 'info_dict': {
373 'id': 'content',
374 'ext': 'mp4',
375 'title': 'content',
376 'formats': 'mincount:8',
377 },
378 'params': {
379 # m3u8 downloads
380 'skip_download': True,
381 },
382 'skip': 'video gone',
383 },
384 # m3u8 served with Content-Type: text/plain
385 {
386 'url': 'http://www.nacentapps.com/m3u8/index.m3u8',
387 'info_dict': {
388 'id': 'index',
389 'ext': 'mp4',
390 'title': 'index',
391 'upload_date': '20140720',
392 'formats': 'mincount:11',
393 },
394 'params': {
395 # m3u8 downloads
396 'skip_download': True,
397 },
398 'skip': 'video gone',
399 },
400 # google redirect
401 {
402 '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',
403 'info_dict': {
404 'id': 'cmQHVoWB5FY',
405 'ext': 'mp4',
406 'upload_date': '20130224',
407 'uploader_id': 'TheVerge',
408 'description': r're:^Chris Ziegler takes a look at the\.*',
409 'uploader': 'The Verge',
410 'title': 'First Firefox OS phones side-by-side',
411 },
412 'params': {
413 'skip_download': False,
414 }
415 },
416 {
417 # redirect in Refresh HTTP header
418 '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',
419 'info_dict': {
420 'id': 'pO8h3EaFRdo',
421 'ext': 'mp4',
422 'title': 'Tripeo Boiler Room x Dekmantel Festival DJ Set',
423 'description': 'md5:6294cc1af09c4049e0652b51a2df10d5',
424 'upload_date': '20150917',
425 'uploader_id': 'brtvofficial',
426 'uploader': 'Boiler Room',
427 },
428 'params': {
429 'skip_download': False,
430 },
431 },
432 {
433 'url': 'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html',
434 'md5': '85b90ccc9d73b4acd9138d3af4c27f89',
435 'info_dict': {
436 'id': '13601338388002',
437 'ext': 'mp4',
438 'uploader': 'www.hodiho.fr',
439 'title': 'R\u00e9gis plante sa Jeep',
440 }
441 },
442 # bandcamp page with custom domain
443 {
444 'add_ie': ['Bandcamp'],
445 'url': 'http://bronyrock.com/track/the-pony-mash',
446 'info_dict': {
447 'id': '3235767654',
448 'ext': 'mp3',
449 'title': 'The Pony Mash',
450 'uploader': 'M_Pallante',
451 },
452 'skip': 'There is a limit of 200 free downloads / month for the test song',
453 },
454 {
455 # embedded brightcove video
456 # it also tests brightcove videos that need to set the 'Referer'
457 # in the http requests
458 'add_ie': ['BrightcoveLegacy'],
459 'url': 'http://www.bfmtv.com/video/bfmbusiness/cours-bourse/cours-bourse-l-analyse-technique-154522/',
460 'info_dict': {
461 'id': '2765128793001',
462 'ext': 'mp4',
463 'title': 'Le cours de bourse : l’analyse technique',
464 'description': 'md5:7e9ad046e968cb2d1114004aba466fd9',
465 'uploader': 'BFM BUSINESS',
466 },
467 'params': {
468 'skip_download': True,
469 },
470 },
471 {
472 # embedded with itemprop embedURL and video id spelled as `idVideo`
473 'add_id': ['BrightcoveLegacy'],
474 'url': 'http://bfmbusiness.bfmtv.com/mediaplayer/chroniques/olivier-delamarche/',
475 'info_dict': {
476 'id': '5255628253001',
477 'ext': 'mp4',
478 'title': 'md5:37c519b1128915607601e75a87995fc0',
479 'description': 'md5:37f7f888b434bb8f8cc8dbd4f7a4cf26',
480 'uploader': 'BFM BUSINESS',
481 'uploader_id': '876450612001',
482 'timestamp': 1482255315,
483 'upload_date': '20161220',
484 },
485 'params': {
486 'skip_download': True,
487 },
488 },
489 {
490 # https://github.com/ytdl-org/youtube-dl/issues/2253
491 'url': 'http://bcove.me/i6nfkrc3',
492 'md5': '0ba9446db037002366bab3b3eb30c88c',
493 'info_dict': {
494 'id': '3101154703001',
495 'ext': 'mp4',
496 'title': 'Still no power',
497 'uploader': 'thestar.com',
498 '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.',
499 },
500 'add_ie': ['BrightcoveLegacy'],
501 'skip': 'video gone',
502 },
503 {
504 'url': 'http://www.championat.com/video/football/v/87/87499.html',
505 'md5': 'fb973ecf6e4a78a67453647444222983',
506 'info_dict': {
507 'id': '3414141473001',
508 'ext': 'mp4',
509 'title': 'Видео. Удаление Дзагоева (ЦСКА)',
510 'description': 'Онлайн-трансляция матча ЦСКА - "Волга"',
511 'uploader': 'Championat',
512 },
513 },
514 {
515 # https://github.com/ytdl-org/youtube-dl/issues/3541
516 'add_ie': ['BrightcoveLegacy'],
517 'url': 'http://www.kijk.nl/sbs6/leermijvrouwenkennen/videos/jqMiXKAYan2S/aflevering-1',
518 'info_dict': {
519 'id': '3866516442001',
520 'ext': 'mp4',
521 'title': 'Leer mij vrouwen kennen: Aflevering 1',
522 'description': 'Leer mij vrouwen kennen: Aflevering 1',
523 'uploader': 'SBS Broadcasting',
524 },
525 'skip': 'Restricted to Netherlands',
526 'params': {
527 'skip_download': True, # m3u8 download
528 },
529 },
530 {
531 # Brightcove video in <iframe>
532 'url': 'http://www.un.org/chinese/News/story.asp?NewsID=27724',
533 'md5': '36d74ef5e37c8b4a2ce92880d208b968',
534 'info_dict': {
535 'id': '5360463607001',
536 'ext': 'mp4',
537 'title': '叙利亚失明儿童在废墟上演唱《心跳》 呼吁获得正常童年生活',
538 'description': '联合国儿童基金会中东和北非区域大使、作曲家扎德·迪拉尼(Zade Dirani)在3月15日叙利亚冲突爆发7周年纪念日之际发布了为叙利亚谱写的歌曲《心跳》(HEARTBEAT),为受到六年冲突影响的叙利亚儿童发出强烈呐喊,呼吁世界做出共同努力,使叙利亚儿童重新获得享有正常童年生活的权利。',
539 'uploader': 'United Nations',
540 'uploader_id': '1362235914001',
541 'timestamp': 1489593889,
542 'upload_date': '20170315',
543 },
544 'add_ie': ['BrightcoveLegacy'],
545 },
546 {
547 # Brightcove with alternative playerID key
548 'url': 'http://www.nature.com/nmeth/journal/v9/n7/fig_tab/nmeth.2062_SV1.html',
549 'info_dict': {
550 'id': 'nmeth.2062_SV1',
551 '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',
552 },
553 'playlist': [{
554 'info_dict': {
555 'id': '2228375078001',
556 'ext': 'mp4',
557 'title': 'nmeth.2062-sv1',
558 'description': 'nmeth.2062-sv1',
559 'timestamp': 1363357591,
560 'upload_date': '20130315',
561 'uploader': 'Nature Publishing Group',
562 'uploader_id': '1964492299001',
563 },
564 }],
565 },
566 {
567 # Brightcove with UUID in videoPlayer
568 'url': 'http://www8.hp.com/cn/zh/home.html',
569 'info_dict': {
570 'id': '5255815316001',
571 'ext': 'mp4',
572 'title': 'Sprocket Video - China',
573 'description': 'Sprocket Video - China',
574 'uploader': 'HP-Video Gallery',
575 'timestamp': 1482263210,
576 'upload_date': '20161220',
577 'uploader_id': '1107601872001',
578 },
579 'params': {
580 'skip_download': True, # m3u8 download
581 },
582 'skip': 'video rotates...weekly?',
583 },
584 {
585 # Brightcove:new type [2].
586 'url': 'http://www.delawaresportszone.com/video-st-thomas-more-earns-first-trip-to-basketball-semis',
587 'md5': '2b35148fcf48da41c9fb4591650784f3',
588 'info_dict': {
589 'id': '5348741021001',
590 'ext': 'mp4',
591 'upload_date': '20170306',
592 'uploader_id': '4191638492001',
593 'timestamp': 1488769918,
594 'title': 'VIDEO: St. Thomas More earns first trip to basketball semis',
595
596 },
597 },
598 {
599 # Alternative brightcove <video> attributes
600 '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/',
601 'info_dict': {
602 'id': '81095-guillaume-canet-evoque-les-rumeurs-d-infidelite-de-marion-cotillard-avec-brad-pitt-dans-vivement-dimanche',
603 '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",
604 },
605 'playlist': [{
606 'md5': '732d22ba3d33f2f3fc253c39f8f36523',
607 'info_dict': {
608 'id': '5311302538001',
609 'ext': 'mp4',
610 'title': "Guillaume Canet évoque les rumeurs d'infidélité de Marion Cotillard avec Brad Pitt dans Vivement Dimanche",
611 'description': "Guillaume Canet évoque les rumeurs d'infidélité de Marion Cotillard avec Brad Pitt dans Vivement Dimanche (France 2, 5 février 2017)",
612 'timestamp': 1486321708,
613 'upload_date': '20170205',
614 'uploader_id': '800000640001',
615 },
616 'only_matching': True,
617 }],
618 },
619 {
620 # Brightcove with UUID in videoPlayer
621 'url': 'http://www8.hp.com/cn/zh/home.html',
622 'info_dict': {
623 'id': '5255815316001',
624 'ext': 'mp4',
625 'title': 'Sprocket Video - China',
626 'description': 'Sprocket Video - China',
627 'uploader': 'HP-Video Gallery',
628 'timestamp': 1482263210,
629 'upload_date': '20161220',
630 'uploader_id': '1107601872001',
631 },
632 'params': {
633 'skip_download': True, # m3u8 download
634 },
635 },
636 # ooyala video
637 {
638 'url': 'http://www.rollingstone.com/music/videos/norwegian-dj-cashmere-cat-goes-spartan-on-with-me-premiere-20131219',
639 'md5': '166dd577b433b4d4ebfee10b0824d8ff',
640 'info_dict': {
641 'id': 'BwY2RxaTrTkslxOfcan0UCf0YqyvWysJ',
642 'ext': 'mp4',
643 'title': '2cc213299525360.mov', # that's what we get
644 'duration': 238.231,
645 },
646 'add_ie': ['Ooyala'],
647 },
648 {
649 # ooyala video embedded with http://player.ooyala.com/iframe.js
650 'url': 'http://www.macrumors.com/2015/07/24/steve-jobs-the-man-in-the-machine-first-trailer/',
651 'info_dict': {
652 'id': 'p0MGJndjoG5SOKqO_hZJuZFPB-Tr5VgB',
653 'ext': 'mp4',
654 'title': '"Steve Jobs: Man in the Machine" trailer',
655 'description': 'The first trailer for the Alex Gibney documentary "Steve Jobs: Man in the Machine."',
656 'duration': 135.427,
657 },
658 'params': {
659 'skip_download': True,
660 },
661 'skip': 'movie expired',
662 },
663 # ooyala video embedded with http://player.ooyala.com/static/v4/production/latest/core.min.js
664 {
665 'url': 'http://wnep.com/2017/07/22/steampunk-fest-comes-to-honesdale/',
666 'info_dict': {
667 'id': 'lwYWYxYzE6V5uJMjNGyKtwwiw9ZJD7t2',
668 'ext': 'mp4',
669 'title': 'Steampunk Fest Comes to Honesdale',
670 'duration': 43.276,
671 },
672 'params': {
673 'skip_download': True,
674 }
675 },
676 # embed.ly video
677 {
678 'url': 'http://www.tested.com/science/weird/460206-tested-grinding-coffee-2000-frames-second/',
679 'info_dict': {
680 'id': '9ODmcdjQcHQ',
681 'ext': 'mp4',
682 'title': 'Tested: Grinding Coffee at 2000 Frames Per Second',
683 'upload_date': '20140225',
684 'description': 'md5:06a40fbf30b220468f1e0957c0f558ff',
685 'uploader': 'Tested',
686 'uploader_id': 'testedcom',
687 },
688 # No need to test YoutubeIE here
689 'params': {
690 'skip_download': True,
691 },
692 },
693 # funnyordie embed
694 {
695 'url': 'http://www.theguardian.com/world/2014/mar/11/obama-zach-galifianakis-between-two-ferns',
696 'info_dict': {
697 'id': '18e820ec3f',
698 'ext': 'mp4',
699 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama',
700 'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',
701 },
702 # HEAD requests lead to endless 301, while GET is OK
703 'expected_warnings': ['301'],
704 },
705 # RUTV embed
706 {
707 'url': 'http://www.rg.ru/2014/03/15/reg-dfo/anklav-anons.html',
708 'info_dict': {
709 'id': '776940',
710 'ext': 'mp4',
711 'title': 'Охотское море стало целиком российским',
712 'description': 'md5:5ed62483b14663e2a95ebbe115eb8f43',
713 },
714 'params': {
715 # m3u8 download
716 'skip_download': True,
717 },
718 },
719 # TVC embed
720 {
721 '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/',
722 'info_dict': {
723 'id': '55304',
724 'ext': 'mp4',
725 'title': 'Дошкольное воспитание',
726 },
727 },
728 # SportBox embed
729 {
730 'url': 'http://www.vestifinance.ru/articles/25753',
731 'info_dict': {
732 'id': '25753',
733 'title': 'Прямые трансляции с Форума-выставки "Госзаказ-2013"',
734 },
735 'playlist': [{
736 'info_dict': {
737 'id': '370908',
738 'title': 'Госзаказ. День 3',
739 'ext': 'mp4',
740 }
741 }, {
742 'info_dict': {
743 'id': '370905',
744 'title': 'Госзаказ. День 2',
745 'ext': 'mp4',
746 }
747 }, {
748 'info_dict': {
749 'id': '370902',
750 'title': 'Госзаказ. День 1',
751 'ext': 'mp4',
752 }
753 }],
754 'params': {
755 # m3u8 download
756 'skip_download': True,
757 },
758 },
759 # Myvi.ru embed
760 {
761 'url': 'http://www.kinomyvi.tv/news/detail/Pervij-dublirovannij-trejler--Uzhastikov-_nOw1',
762 'info_dict': {
763 'id': 'f4dafcad-ff21-423d-89b5-146cfd89fa1e',
764 'ext': 'mp4',
765 'title': 'Ужастики, русский трейлер (2015)',
766 'thumbnail': r're:^https?://.*\.jpg$',
767 'duration': 153,
768 }
769 },
770 # XHamster embed
771 {
772 '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',
773 'info_dict': {
774 'id': 'showthread',
775 'title': '[NSFL] [FM15] which pumiscer was this ( vid ) ( alfa as fuck srx )',
776 },
777 'playlist_mincount': 7,
778 # This forum does not allow <iframe> syntaxes anymore
779 # Now HTML tags are displayed as-is
780 'skip': 'No videos on this page',
781 },
782 # Embedded TED video
783 {
784 'url': 'http://en.support.wordpress.com/videos/ted-talks/',
785 'md5': '65fdff94098e4a607385a60c5177c638',
786 'info_dict': {
787 'id': '1969',
788 'ext': 'mp4',
789 'title': 'Hidden miracles of the natural world',
790 'uploader': 'Louie Schwartzberg',
791 'description': 'md5:8145d19d320ff3e52f28401f4c4283b9',
792 }
793 },
794 # nowvideo embed hidden behind percent encoding
795 {
796 'url': 'http://www.waoanime.tv/the-super-dimension-fortress-macross-episode-1/',
797 'md5': '2baf4ddd70f697d94b1c18cf796d5107',
798 'info_dict': {
799 'id': '06e53103ca9aa',
800 'ext': 'flv',
801 'title': 'Macross Episode 001 Watch Macross Episode 001 onl',
802 'description': 'No description',
803 },
804 },
805 # arte embed
806 {
807 'url': 'http://www.tv-replay.fr/redirection/20-03-14/x-enius-arte-10753389.html',
808 'md5': '7653032cbb25bf6c80d80f217055fa43',
809 'info_dict': {
810 'id': '048195-004_PLUS7-F',
811 'ext': 'flv',
812 'title': 'X:enius',
813 'description': 'md5:d5fdf32ef6613cdbfd516ae658abf168',
814 'upload_date': '20140320',
815 },
816 'params': {
817 'skip_download': 'Requires rtmpdump'
818 },
819 'skip': 'video gone',
820 },
821 # francetv embed
822 {
823 'url': 'http://www.tsprod.com/replay-du-concert-alcaline-de-calogero',
824 'info_dict': {
825 'id': 'EV_30231',
826 'ext': 'mp4',
827 'title': 'Alcaline, le concert avec Calogero',
828 'description': 'md5:61f08036dcc8f47e9cfc33aed08ffaff',
829 'upload_date': '20150226',
830 'timestamp': 1424989860,
831 'duration': 5400,
832 },
833 'params': {
834 # m3u8 downloads
835 'skip_download': True,
836 },
837 'expected_warnings': [
838 'Forbidden'
839 ]
840 },
841 # Condé Nast embed
842 {
843 'url': 'http://www.wired.com/2014/04/honda-asimo/',
844 'md5': 'ba0dfe966fa007657bd1443ee672db0f',
845 'info_dict': {
846 'id': '53501be369702d3275860000',
847 'ext': 'mp4',
848 'title': 'Honda’s New Asimo Robot Is More Human Than Ever',
849 }
850 },
851 # Dailymotion embed
852 {
853 'url': 'http://www.spi0n.com/zap-spi0n-com-n216/',
854 'md5': '441aeeb82eb72c422c7f14ec533999cd',
855 'info_dict': {
856 'id': 'k2mm4bCdJ6CQ2i7c8o2',
857 'ext': 'mp4',
858 'title': 'Le Zap de Spi0n n°216 - Zapping du Web',
859 'description': 'md5:faf028e48a461b8b7fad38f1e104b119',
860 'uploader': 'Spi0n',
861 'uploader_id': 'xgditw',
862 'upload_date': '20140425',
863 'timestamp': 1398441542,
864 },
865 'add_ie': ['Dailymotion'],
866 },
867 # DailyMail embed
868 {
869 'url': 'http://www.bumm.sk/krimi/2017/07/05/biztonsagi-kamera-buktatta-le-az-agg-ferfit-utlegelo-apolot',
870 'info_dict': {
871 'id': '1495629',
872 'ext': 'mp4',
873 'title': 'Care worker punches elderly dementia patient in head 11 times',
874 'description': 'md5:3a743dee84e57e48ec68bf67113199a5',
875 },
876 'add_ie': ['DailyMail'],
877 'params': {
878 'skip_download': True,
879 },
880 },
881 # YouTube embed
882 {
883 'url': 'http://www.badzine.de/ansicht/datum/2014/06/09/so-funktioniert-die-neue-englische-badminton-liga.html',
884 'info_dict': {
885 'id': 'FXRb4ykk4S0',
886 'ext': 'mp4',
887 'title': 'The NBL Auction 2014',
888 'uploader': 'BADMINTON England',
889 'uploader_id': 'BADMINTONEvents',
890 'upload_date': '20140603',
891 'description': 'md5:9ef128a69f1e262a700ed83edb163a73',
892 },
893 'add_ie': ['Youtube'],
894 'params': {
895 'skip_download': True,
896 }
897 },
898 # MTVServices embed
899 {
900 'url': 'http://www.vulture.com/2016/06/new-key-peele-sketches-released.html',
901 'md5': 'ca1aef97695ef2c1d6973256a57e5252',
902 'info_dict': {
903 'id': '769f7ec0-0692-4d62-9b45-0d88074bffc1',
904 'ext': 'mp4',
905 'title': 'Key and Peele|October 10, 2012|2|203|Liam Neesons - Uncensored',
906 'description': 'Two valets share their love for movie star Liam Neesons.',
907 'timestamp': 1349922600,
908 'upload_date': '20121011',
909 },
910 },
911 # YouTube embed via <data-embed-url="">
912 {
913 'url': 'https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM',
914 'info_dict': {
915 'id': '4vAffPZIT44',
916 'ext': 'mp4',
917 'title': 'Asphalt 8: Airborne - Update - Welcome to Dubai!',
918 'uploader': 'Gameloft',
919 'uploader_id': 'gameloft',
920 'upload_date': '20140828',
921 'description': 'md5:c80da9ed3d83ae6d1876c834de03e1c4',
922 },
923 'params': {
924 'skip_download': True,
925 }
926 },
927 # YouTube <object> embed
928 {
929 'url': 'http://www.improbable.com/2017/04/03/untrained-modern-youths-and-ancient-masters-in-selfie-portraits/',
930 'md5': '516718101ec834f74318df76259fb3cc',
931 'info_dict': {
932 'id': 'msN87y-iEx0',
933 'ext': 'webm',
934 'title': 'Feynman: Mirrors FUN TO IMAGINE 6',
935 'upload_date': '20080526',
936 'description': 'md5:0ffc78ea3f01b2e2c247d5f8d1d3c18d',
937 'uploader': 'Christopher Sykes',
938 'uploader_id': 'ChristopherJSykes',
939 },
940 'add_ie': ['Youtube'],
941 },
942 # Camtasia studio
943 {
944 'url': 'http://www.ll.mit.edu/workshops/education/videocourses/antennas/lecture1/video/',
945 'playlist': [{
946 'md5': '0c5e352edabf715d762b0ad4e6d9ee67',
947 'info_dict': {
948 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
949 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - video1',
950 'ext': 'flv',
951 'duration': 2235.90,
952 }
953 }, {
954 'md5': '10e4bb3aaca9fd630e273ff92d9f3c63',
955 'info_dict': {
956 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final_PIP',
957 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - pip',
958 'ext': 'flv',
959 'duration': 2235.93,
960 }
961 }],
962 'info_dict': {
963 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
964 }
965 },
966 # Flowplayer
967 {
968 'url': 'http://www.handjobhub.com/video/busty-blonde-siri-tit-fuck-while-wank-6313.html',
969 'md5': '9d65602bf31c6e20014319c7d07fba27',
970 'info_dict': {
971 'id': '5123ea6d5e5a7',
972 'ext': 'mp4',
973 'age_limit': 18,
974 'uploader': 'www.handjobhub.com',
975 'title': 'Busty Blonde Siri Tit Fuck While Wank at HandjobHub.com',
976 }
977 },
978 # Multiple brightcove videos
979 # https://github.com/ytdl-org/youtube-dl/issues/2283
980 {
981 'url': 'http://www.newyorker.com/online/blogs/newsdesk/2014/01/always-never-nuclear-command-and-control.html',
982 'info_dict': {
983 'id': 'always-never',
984 'title': 'Always / Never - The New Yorker',
985 },
986 'playlist_count': 3,
987 'params': {
988 'extract_flat': False,
989 'skip_download': True,
990 }
991 },
992 # MLB embed
993 {
994 'url': 'http://umpire-empire.com/index.php/topic/58125-laz-decides-no-thats-low/',
995 'md5': '96f09a37e44da40dd083e12d9a683327',
996 'info_dict': {
997 'id': '33322633',
998 'ext': 'mp4',
999 'title': 'Ump changes call to ball',
1000 'description': 'md5:71c11215384298a172a6dcb4c2e20685',
1001 'duration': 48,
1002 'timestamp': 1401537900,
1003 'upload_date': '20140531',
1004 'thumbnail': r're:^https?://.*\.jpg$',
1005 },
1006 },
1007 # Wistia embed
1008 {
1009 'url': 'http://study.com/academy/lesson/north-american-exploration-failed-colonies-of-spain-france-england.html#lesson',
1010 'md5': '1953f3a698ab51cfc948ed3992a0b7ff',
1011 'info_dict': {
1012 'id': '6e2wtrbdaf',
1013 'ext': 'mov',
1014 'title': 'paywall_north-american-exploration-failed-colonies-of-spain-france-england',
1015 'description': 'a Paywall Videos video from Remilon',
1016 'duration': 644.072,
1017 'uploader': 'study.com',
1018 'timestamp': 1459678540,
1019 'upload_date': '20160403',
1020 'filesize': 24687186,
1021 },
1022 },
1023 {
1024 'url': 'http://thoughtworks.wistia.com/medias/uxjb0lwrcz',
1025 'md5': 'baf49c2baa8a7de5f3fc145a8506dcd4',
1026 'info_dict': {
1027 'id': 'uxjb0lwrcz',
1028 'ext': 'mp4',
1029 'title': 'Conversation about Hexagonal Rails Part 1',
1030 'description': 'a Martin Fowler video from ThoughtWorks',
1031 'duration': 1715.0,
1032 'uploader': 'thoughtworks.wistia.com',
1033 'timestamp': 1401832161,
1034 'upload_date': '20140603',
1035 },
1036 },
1037 # Wistia standard embed (async)
1038 {
1039 'url': 'https://www.getdrip.com/university/brennan-dunn-drip-workshop/',
1040 'info_dict': {
1041 'id': '807fafadvk',
1042 'ext': 'mp4',
1043 'title': 'Drip Brennan Dunn Workshop',
1044 'description': 'a JV Webinars video from getdrip-1',
1045 'duration': 4986.95,
1046 'timestamp': 1463607249,
1047 'upload_date': '20160518',
1048 },
1049 'params': {
1050 'skip_download': True,
1051 }
1052 },
1053 # Soundcloud embed
1054 {
1055 'url': 'http://nakedsecurity.sophos.com/2014/10/29/sscc-171-are-you-sure-that-1234-is-a-bad-password-podcast/',
1056 'info_dict': {
1057 'id': '174391317',
1058 'ext': 'mp3',
1059 'description': 'md5:ff867d6b555488ad3c52572bb33d432c',
1060 'uploader': 'Sophos Security',
1061 'title': 'Chet Chat 171 - Oct 29, 2014',
1062 'upload_date': '20141029',
1063 }
1064 },
1065 # Soundcloud multiple embeds
1066 {
1067 'url': 'http://www.guitarplayer.com/lessons/1014/legato-workout-one-hour-to-more-fluid-performance---tab/52809',
1068 'info_dict': {
1069 'id': '52809',
1070 'title': 'Guitar Essentials: Legato Workout—One-Hour to Fluid Performance | TAB + AUDIO',
1071 },
1072 'playlist_mincount': 7,
1073 },
1074 # TuneIn station embed
1075 {
1076 'url': 'http://radiocnrv.com/promouvoir-radio-cnrv/',
1077 'info_dict': {
1078 'id': '204146',
1079 'ext': 'mp3',
1080 'title': 'CNRV',
1081 'location': 'Paris, France',
1082 'is_live': True,
1083 },
1084 'params': {
1085 # Live stream
1086 'skip_download': True,
1087 },
1088 },
1089 # Livestream embed
1090 {
1091 'url': 'http://www.esa.int/Our_Activities/Space_Science/Rosetta/Philae_comet_touch-down_webcast',
1092 'info_dict': {
1093 'id': '67864563',
1094 'ext': 'flv',
1095 'upload_date': '20141112',
1096 'title': 'Rosetta #CometLanding webcast HL 10',
1097 }
1098 },
1099 # Another Livestream embed, without 'new.' in URL
1100 {
1101 'url': 'https://www.freespeech.org/',
1102 'info_dict': {
1103 'id': '123537347',
1104 'ext': 'mp4',
1105 'title': 're:^FSTV [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
1106 },
1107 'params': {
1108 # Live stream
1109 'skip_download': True,
1110 },
1111 },
1112 # LazyYT
1113 {
1114 'url': 'https://skiplagged.com/',
1115 'info_dict': {
1116 'id': 'skiplagged',
1117 'title': 'Skiplagged: The smart way to find cheap flights',
1118 },
1119 'playlist_mincount': 1,
1120 'add_ie': ['Youtube'],
1121 },
1122 # Cinchcast embed
1123 {
1124 'url': 'http://undergroundwellness.com/podcasts/306-5-steps-to-permanent-gut-healing/',
1125 'info_dict': {
1126 'id': '7141703',
1127 'ext': 'mp3',
1128 'upload_date': '20141126',
1129 'title': 'Jack Tips: 5 Steps to Permanent Gut Healing',
1130 }
1131 },
1132 # Cinerama player
1133 {
1134 'url': 'http://www.abc.net.au/7.30/content/2015/s4164797.htm',
1135 'info_dict': {
1136 'id': '730m_DandD_1901_512k',
1137 'ext': 'mp4',
1138 'uploader': 'www.abc.net.au',
1139 'title': 'Game of Thrones with dice - Dungeons and Dragons fantasy role-playing game gets new life - 19/01/2015',
1140 }
1141 },
1142 # embedded viddler video
1143 {
1144 'url': 'http://deadspin.com/i-cant-stop-watching-john-wall-chop-the-nuggets-with-th-1681801597',
1145 'info_dict': {
1146 'id': '4d03aad9',
1147 'ext': 'mp4',
1148 'uploader': 'deadspin',
1149 'title': 'WALL-TO-GORTAT',
1150 'timestamp': 1422285291,
1151 'upload_date': '20150126',
1152 },
1153 'add_ie': ['Viddler'],
1154 },
1155 # Libsyn embed
1156 {
1157 'url': 'http://thedailyshow.cc.com/podcast/episodetwelve',
1158 'info_dict': {
1159 'id': '3377616',
1160 'ext': 'mp3',
1161 'title': "The Daily Show Podcast without Jon Stewart - Episode 12: Bassem Youssef: Egypt's Jon Stewart",
1162 'description': 'md5:601cb790edd05908957dae8aaa866465',
1163 'upload_date': '20150220',
1164 },
1165 'skip': 'All The Daily Show URLs now redirect to http://www.cc.com/shows/',
1166 },
1167 # jwplayer YouTube
1168 {
1169 'url': 'http://media.nationalarchives.gov.uk/index.php/webinar-using-discovery-national-archives-online-catalogue/',
1170 'info_dict': {
1171 'id': 'Mrj4DVp2zeA',
1172 'ext': 'mp4',
1173 'upload_date': '20150212',
1174 'uploader': 'The National Archives UK',
1175 'description': 'md5:8078af856dca76edc42910b61273dbbf',
1176 'uploader_id': 'NationalArchives08',
1177 'title': 'Webinar: Using Discovery, The National Archives’ online catalogue',
1178 },
1179 },
1180 # jwplayer rtmp
1181 {
1182 'url': 'http://www.suffolk.edu/sjc/live.php',
1183 'info_dict': {
1184 'id': 'live',
1185 'ext': 'flv',
1186 'title': 'Massachusetts Supreme Judicial Court Oral Arguments',
1187 'uploader': 'www.suffolk.edu',
1188 },
1189 'params': {
1190 'skip_download': True,
1191 },
1192 'skip': 'Only has video a few mornings per month, see http://www.suffolk.edu/sjc/',
1193 },
1194 # jwplayer with only the json URL
1195 {
1196 'url': 'https://www.hollywoodreporter.com/news/general-news/dunkirk-team-reveals-what-christopher-nolan-said-oscar-win-meet-your-oscar-winner-1092454',
1197 'info_dict': {
1198 'id': 'TljWkvWH',
1199 'ext': 'mp4',
1200 'upload_date': '20180306',
1201 'title': 'md5:91eb1862f6526415214f62c00b453936',
1202 'description': 'md5:73048ae50ae953da10549d1d2fe9b3aa',
1203 'timestamp': 1520367225,
1204 },
1205 'params': {
1206 'skip_download': True,
1207 },
1208 },
1209 # Complex jwplayer
1210 {
1211 'url': 'http://www.indiedb.com/games/king-machine/videos',
1212 'info_dict': {
1213 'id': 'videos',
1214 'ext': 'mp4',
1215 'title': 'king machine trailer 1',
1216 'description': 'Browse King Machine videos & audio for sweet media. Your eyes will thank you.',
1217 'thumbnail': r're:^https?://.*\.jpg$',
1218 },
1219 },
1220 {
1221 # JWPlayer config passed as variable
1222 'url': 'http://www.txxx.com/videos/3326530/ariele/',
1223 'info_dict': {
1224 'id': '3326530_hq',
1225 'ext': 'mp4',
1226 'title': 'ARIELE | Tube Cup',
1227 'uploader': 'www.txxx.com',
1228 'age_limit': 18,
1229 },
1230 'params': {
1231 'skip_download': True,
1232 }
1233 },
1234 {
1235 # JWPlatform iframe
1236 'url': 'https://www.covermagazine.co.uk/feature/2465255/business-protection-involved',
1237 'info_dict': {
1238 'id': 'AG26UQXM',
1239 'ext': 'mp4',
1240 'upload_date': '20160719',
1241 'timestamp': 468923808,
1242 'title': '2016_05_18 Cover L&G Business Protection V1 FINAL.mp4',
1243 },
1244 'add_ie': [JWPlatformIE.ie_key()],
1245 },
1246 {
1247 # Video.js embed, multiple formats
1248 'url': 'http://ortcam.com/solidworks-урок-6-настройка-чертежа_33f9b7351.html',
1249 'info_dict': {
1250 'id': 'yygqldloqIk',
1251 'ext': 'mp4',
1252 'title': 'SolidWorks. Урок 6 Настройка чертежа',
1253 'description': 'md5:baf95267792646afdbf030e4d06b2ab3',
1254 'upload_date': '20130314',
1255 'uploader': 'PROстое3D',
1256 'uploader_id': 'PROstoe3D',
1257 },
1258 'params': {
1259 'skip_download': True,
1260 },
1261 },
1262 {
1263 # Video.js embed, single format
1264 'url': 'https://www.vooplayer.com/v3/watch/watch.php?v=NzgwNTg=',
1265 'info_dict': {
1266 'id': 'watch',
1267 'ext': 'mp4',
1268 'title': 'Step 1 - Good Foundation',
1269 'description': 'md5:d1e7ff33a29fc3eb1673d6c270d344f4',
1270 },
1271 'params': {
1272 'skip_download': True,
1273 },
1274 },
1275 # rtl.nl embed
1276 {
1277 'url': 'http://www.rtlnieuws.nl/nieuws/buitenland/aanslagen-kopenhagen',
1278 'playlist_mincount': 5,
1279 'info_dict': {
1280 'id': 'aanslagen-kopenhagen',
1281 'title': 'Aanslagen Kopenhagen',
1282 }
1283 },
1284 # Zapiks embed
1285 {
1286 'url': 'http://www.skipass.com/news/116090-bon-appetit-s5ep3-baqueira-mi-cor.html',
1287 'info_dict': {
1288 'id': '118046',
1289 'ext': 'mp4',
1290 'title': 'EP3S5 - Bon Appétit - Baqueira Mi Corazon !',
1291 }
1292 },
1293 # Kaltura embed (different embed code)
1294 {
1295 'url': 'http://www.premierchristianradio.com/Shows/Saturday/Unbelievable/Conference-Videos/Os-Guinness-Is-It-Fools-Talk-Unbelievable-Conference-2014',
1296 'info_dict': {
1297 'id': '1_a52wc67y',
1298 'ext': 'flv',
1299 'upload_date': '20150127',
1300 'uploader_id': 'PremierMedia',
1301 'timestamp': int,
1302 'title': 'Os Guinness // Is It Fools Talk? // Unbelievable? Conference 2014',
1303 },
1304 },
1305 # Kaltura embed with single quotes
1306 {
1307 'url': 'http://fod.infobase.com/p_ViewPlaylist.aspx?AssignmentID=NUN8ZY',
1308 'info_dict': {
1309 'id': '0_izeg5utt',
1310 'ext': 'mp4',
1311 'title': '35871',
1312 'timestamp': 1355743100,
1313 'upload_date': '20121217',
1314 'uploader_id': 'cplapp@learn360.com',
1315 },
1316 'add_ie': ['Kaltura'],
1317 },
1318 {
1319 # Kaltura embedded via quoted entry_id
1320 'url': 'https://www.oreilly.com/ideas/my-cloud-makes-pretty-pictures',
1321 'info_dict': {
1322 'id': '0_utuok90b',
1323 'ext': 'mp4',
1324 'title': '06_matthew_brender_raj_dutt',
1325 'timestamp': 1466638791,
1326 'upload_date': '20160622',
1327 },
1328 'add_ie': ['Kaltura'],
1329 'expected_warnings': [
1330 'Could not send HEAD request'
1331 ],
1332 'params': {
1333 'skip_download': True,
1334 }
1335 },
1336 {
1337 # Kaltura embedded, some fileExt broken (#11480)
1338 'url': 'http://www.cornell.edu/video/nima-arkani-hamed-standard-models-of-particle-physics',
1339 'info_dict': {
1340 'id': '1_sgtvehim',
1341 'ext': 'mp4',
1342 'title': 'Our "Standard Models" of particle physics and cosmology',
1343 'description': 'md5:67ea74807b8c4fea92a6f38d6d323861',
1344 'timestamp': 1321158993,
1345 'upload_date': '20111113',
1346 'uploader_id': 'kps1',
1347 },
1348 'add_ie': ['Kaltura'],
1349 },
1350 {
1351 # Kaltura iframe embed
1352 'url': 'http://www.gsd.harvard.edu/event/i-m-pei-a-centennial-celebration/',
1353 'md5': 'ae5ace8eb09dc1a35d03b579a9c2cc44',
1354 'info_dict': {
1355 'id': '0_f2cfbpwy',
1356 'ext': 'mp4',
1357 'title': 'I. M. Pei: A Centennial Celebration',
1358 'description': 'md5:1db8f40c69edc46ca180ba30c567f37c',
1359 'upload_date': '20170403',
1360 'uploader_id': 'batchUser',
1361 'timestamp': 1491232186,
1362 },
1363 'add_ie': ['Kaltura'],
1364 },
1365 {
1366 # Kaltura iframe embed, more sophisticated
1367 'url': 'http://www.cns.nyu.edu/~eero/math-tools/Videos/lecture-05sep2017.html',
1368 'info_dict': {
1369 'id': '1_9gzouybz',
1370 'ext': 'mp4',
1371 'title': 'lecture-05sep2017',
1372 'description': 'md5:40f347d91fd4ba047e511c5321064b49',
1373 'upload_date': '20170913',
1374 'uploader_id': 'eps2',
1375 'timestamp': 1505340777,
1376 },
1377 'params': {
1378 'skip_download': True,
1379 },
1380 'add_ie': ['Kaltura'],
1381 },
1382 {
1383 # meta twitter:player
1384 'url': 'http://thechive.com/2017/12/08/all-i-want-for-christmas-is-more-twerk/',
1385 'info_dict': {
1386 'id': '0_01b42zps',
1387 'ext': 'mp4',
1388 'title': 'Main Twerk (Video)',
1389 'upload_date': '20171208',
1390 'uploader_id': 'sebastian.salinas@thechive.com',
1391 'timestamp': 1512713057,
1392 },
1393 'params': {
1394 'skip_download': True,
1395 },
1396 'add_ie': ['Kaltura'],
1397 },
1398 # referrer protected EaglePlatform embed
1399 {
1400 'url': 'https://tvrain.ru/lite/teleshow/kak_vse_nachinalos/namin-418921/',
1401 'info_dict': {
1402 'id': '582306',
1403 'ext': 'mp4',
1404 'title': 'Стас Намин: «Мы нарушили девственность Кремля»',
1405 'thumbnail': r're:^https?://.*\.jpg$',
1406 'duration': 3382,
1407 'view_count': int,
1408 },
1409 'params': {
1410 'skip_download': True,
1411 },
1412 },
1413 # ClipYou (EaglePlatform) embed (custom URL)
1414 {
1415 'url': 'http://muz-tv.ru/play/7129/',
1416 # Not checking MD5 as sometimes the direct HTTP link results in 404 and HLS is used
1417 'info_dict': {
1418 'id': '12820',
1419 'ext': 'mp4',
1420 'title': "'O Sole Mio",
1421 'thumbnail': r're:^https?://.*\.jpg$',
1422 'duration': 216,
1423 'view_count': int,
1424 },
1425 'params': {
1426 'skip_download': True,
1427 },
1428 'skip': 'This video is unavailable.',
1429 },
1430 # Pladform embed
1431 {
1432 'url': 'http://muz-tv.ru/kinozal/view/7400/',
1433 'info_dict': {
1434 'id': '100183293',
1435 'ext': 'mp4',
1436 'title': 'Тайны перевала Дятлова • 1 серия 2 часть',
1437 'description': 'Документальный сериал-расследование одной из самых жутких тайн ХХ века',
1438 'thumbnail': r're:^https?://.*\.jpg$',
1439 'duration': 694,
1440 'age_limit': 0,
1441 },
1442 'skip': 'HTTP Error 404: Not Found',
1443 },
1444 # Playwire embed
1445 {
1446 'url': 'http://www.cinemablend.com/new/First-Joe-Dirt-2-Trailer-Teaser-Stupid-Greatness-70874.html',
1447 'info_dict': {
1448 'id': '3519514',
1449 'ext': 'mp4',
1450 'title': 'Joe Dirt 2 Beautiful Loser Teaser Trailer',
1451 'thumbnail': r're:^https?://.*\.png$',
1452 'duration': 45.115,
1453 },
1454 },
1455 # 5min embed
1456 {
1457 'url': 'http://techcrunch.com/video/facebook-creates-on-this-day-crunch-report/518726732/',
1458 'md5': '4c6f127a30736b59b3e2c19234ee2bf7',
1459 'info_dict': {
1460 'id': '518726732',
1461 'ext': 'mp4',
1462 'title': 'Facebook Creates "On This Day" | Crunch Report',
1463 'description': 'Amazon updates Fire TV line, Tesla\'s Model X spotted in the wild',
1464 'timestamp': 1427237531,
1465 'uploader': 'Crunch Report',
1466 'upload_date': '20150324',
1467 },
1468 'params': {
1469 # m3u8 download
1470 'skip_download': True,
1471 },
1472 },
1473 # Crooks and Liars embed
1474 {
1475 'url': 'http://crooksandliars.com/2015/04/fox-friends-says-protecting-atheists',
1476 'info_dict': {
1477 'id': '8RUoRhRi',
1478 'ext': 'mp4',
1479 'title': "Fox & Friends Says Protecting Atheists From Discrimination Is Anti-Christian!",
1480 'description': 'md5:e1a46ad1650e3a5ec7196d432799127f',
1481 'timestamp': 1428207000,
1482 'upload_date': '20150405',
1483 'uploader': 'Heather',
1484 },
1485 },
1486 # Crooks and Liars external embed
1487 {
1488 'url': 'http://theothermccain.com/2010/02/02/video-proves-that-bill-kristol-has-been-watching-glenn-beck/comment-page-1/',
1489 'info_dict': {
1490 'id': 'MTE3MjUtMzQ2MzA',
1491 'ext': 'mp4',
1492 'title': 'md5:5e3662a81a4014d24c250d76d41a08d5',
1493 'description': 'md5:9b8e9542d6c3c5de42d6451b7d780cec',
1494 'timestamp': 1265032391,
1495 'upload_date': '20100201',
1496 'uploader': 'Heather',
1497 },
1498 },
1499 # NBC Sports vplayer embed
1500 {
1501 'url': 'http://www.riderfans.com/forum/showthread.php?121827-Freeman&s=e98fa1ea6dc08e886b1678d35212494a',
1502 'info_dict': {
1503 'id': 'ln7x1qSThw4k',
1504 'ext': 'flv',
1505 'title': "PFT Live: New leader in the 'new-look' defense",
1506 'description': 'md5:65a19b4bbfb3b0c0c5768bed1dfad74e',
1507 'uploader': 'NBCU-SPORTS',
1508 'upload_date': '20140107',
1509 'timestamp': 1389118457,
1510 },
1511 'skip': 'Invalid Page URL',
1512 },
1513 # NBC News embed
1514 {
1515 'url': 'http://www.vulture.com/2016/06/letterman-couldnt-care-less-about-late-night.html',
1516 'md5': '1aa589c675898ae6d37a17913cf68d66',
1517 'info_dict': {
1518 'id': 'x_dtl_oa_LettermanliftPR_160608',
1519 'ext': 'mp4',
1520 'title': 'David Letterman: A Preview',
1521 '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.',
1522 'upload_date': '20160609',
1523 'timestamp': 1465431544,
1524 'uploader': 'NBCU-NEWS',
1525 },
1526 },
1527 # UDN embed
1528 {
1529 'url': 'https://video.udn.com/news/300346',
1530 'md5': 'fd2060e988c326991037b9aff9df21a6',
1531 'info_dict': {
1532 'id': '300346',
1533 'ext': 'mp4',
1534 'title': '中一中男師變性 全校師生力挺',
1535 'thumbnail': r're:^https?://.*\.jpg$',
1536 },
1537 'params': {
1538 # m3u8 download
1539 'skip_download': True,
1540 },
1541 'expected_warnings': ['Failed to parse JSON Expecting value'],
1542 },
1543 # Brightcove URL in single quotes
1544 {
1545 'url': 'http://www.sportsnet.ca/baseball/mlb/sn-presents-russell-martin-world-citizen/',
1546 'md5': '4ae374f1f8b91c889c4b9203c8c752af',
1547 'info_dict': {
1548 'id': '4255764656001',
1549 'ext': 'mp4',
1550 'title': 'SN Presents: Russell Martin, World Citizen',
1551 '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.',
1552 'uploader': 'Rogers Sportsnet',
1553 'uploader_id': '1704050871',
1554 'upload_date': '20150525',
1555 'timestamp': 1432570283,
1556 },
1557 },
1558 # Kinja embed
1559 {
1560 'url': 'http://www.clickhole.com/video/dont-understand-bitcoin-man-will-mumble-explanatio-2537',
1561 'info_dict': {
1562 'id': '106351',
1563 'ext': 'mp4',
1564 'title': 'Don’t Understand Bitcoin? This Man Will Mumble An Explanation At You',
1565 'description': 'Migrated from OnionStudios',
1566 'thumbnail': r're:^https?://.*\.jpe?g$',
1567 'uploader': 'clickhole',
1568 'upload_date': '20150527',
1569 'timestamp': 1432744860,
1570 }
1571 },
1572 # SnagFilms embed
1573 {
1574 'url': 'http://whilewewatch.blogspot.ru/2012/06/whilewewatch-whilewewatch-gripping.html',
1575 'info_dict': {
1576 'id': '74849a00-85a9-11e1-9660-123139220831',
1577 'ext': 'mp4',
1578 'title': '#whilewewatch',
1579 }
1580 },
1581 # AdobeTVVideo embed
1582 {
1583 'url': 'https://helpx.adobe.com/acrobat/how-to/new-experience-acrobat-dc.html?set=acrobat--get-started--essential-beginners',
1584 'md5': '43662b577c018ad707a63766462b1e87',
1585 'info_dict': {
1586 'id': '2456',
1587 'ext': 'mp4',
1588 'title': 'New experience with Acrobat DC',
1589 'description': 'New experience with Acrobat DC',
1590 'duration': 248.667,
1591 },
1592 },
1593 # BrightcoveInPageEmbed embed
1594 {
1595 'url': 'http://www.geekandsundry.com/tabletop-bonus-wils-final-thoughts-on-dread/',
1596 'info_dict': {
1597 'id': '4238694884001',
1598 'ext': 'flv',
1599 'title': 'Tabletop: Dread, Last Thoughts',
1600 'description': 'Tabletop: Dread, Last Thoughts',
1601 'duration': 51690,
1602 },
1603 },
1604 # Brightcove embed, with no valid 'renditions' but valid 'IOSRenditions'
1605 # This video can't be played in browsers if Flash disabled and UA set to iPhone, which is actually a false alarm
1606 {
1607 'url': 'https://dl.dropboxusercontent.com/u/29092637/interview.html',
1608 'info_dict': {
1609 'id': '4785848093001',
1610 'ext': 'mp4',
1611 'title': 'The Cardinal Pell Interview',
1612 'description': 'Sky News Contributor Andrew Bolt interviews George Pell in Rome, following the Cardinal\'s evidence before the Royal Commission into Child Abuse. ',
1613 'uploader': 'GlobeCast Australia - GlobeStream',
1614 'uploader_id': '2733773828001',
1615 'upload_date': '20160304',
1616 'timestamp': 1457083087,
1617 },
1618 'params': {
1619 # m3u8 downloads
1620 'skip_download': True,
1621 },
1622 },
1623 {
1624 # Brightcove embed with whitespace around attribute names
1625 'url': 'http://www.stack.com/video/3167554373001/learn-to-hit-open-three-pointers-with-damian-lillard-s-baseline-drift-drill',
1626 'info_dict': {
1627 'id': '3167554373001',
1628 'ext': 'mp4',
1629 'title': "Learn to Hit Open Three-Pointers With Damian Lillard's Baseline Drift Drill",
1630 'description': 'md5:57bacb0e0f29349de4972bfda3191713',
1631 'uploader_id': '1079349493',
1632 'upload_date': '20140207',
1633 'timestamp': 1391810548,
1634 },
1635 'params': {
1636 'skip_download': True,
1637 },
1638 },
1639 # Another form of arte.tv embed
1640 {
1641 'url': 'http://www.tv-replay.fr/redirection/09-04-16/arte-reportage-arte-11508975.html',
1642 'md5': '850bfe45417ddf221288c88a0cffe2e2',
1643 'info_dict': {
1644 'id': '030273-562_PLUS7-F',
1645 'ext': 'mp4',
1646 'title': 'ARTE Reportage - Nulle part, en France',
1647 'description': 'md5:e3a0e8868ed7303ed509b9e3af2b870d',
1648 'upload_date': '20160409',
1649 },
1650 },
1651 # Duplicated embedded video URLs
1652 {
1653 'url': 'http://www.hudl.com/athlete/2538180/highlights/149298443',
1654 'info_dict': {
1655 'id': '149298443_480_16c25b74_2',
1656 'ext': 'mp4',
1657 'title': 'vs. Blue Orange Spring Game',
1658 'uploader': 'www.hudl.com',
1659 },
1660 },
1661 # twitter:player:stream embed
1662 {
1663 'url': 'http://www.rtl.be/info/video/589263.aspx?CategoryID=288',
1664 'info_dict': {
1665 'id': 'master',
1666 'ext': 'mp4',
1667 'title': 'Une nouvelle espèce de dinosaure découverte en Argentine',
1668 'uploader': 'www.rtl.be',
1669 },
1670 'params': {
1671 # m3u8 downloads
1672 'skip_download': True,
1673 },
1674 },
1675 # twitter:player embed
1676 {
1677 'url': 'http://www.theatlantic.com/video/index/484130/what-do-black-holes-sound-like/',
1678 'md5': 'a3e0df96369831de324f0778e126653c',
1679 'info_dict': {
1680 'id': '4909620399001',
1681 'ext': 'mp4',
1682 'title': 'What Do Black Holes Sound Like?',
1683 'description': 'what do black holes sound like',
1684 'upload_date': '20160524',
1685 'uploader_id': '29913724001',
1686 'timestamp': 1464107587,
1687 'uploader': 'TheAtlantic',
1688 },
1689 'add_ie': ['BrightcoveLegacy'],
1690 },
1691 # Facebook <iframe> embed
1692 {
1693 'url': 'https://www.hostblogger.de/blog/archives/6181-Auto-jagt-Betonmischer.html',
1694 'md5': 'fbcde74f534176ecb015849146dd3aee',
1695 'info_dict': {
1696 'id': '599637780109885',
1697 'ext': 'mp4',
1698 'title': 'Facebook video #599637780109885',
1699 },
1700 },
1701 # Facebook <iframe> embed, plugin video
1702 {
1703 'url': 'http://5pillarsuk.com/2017/06/07/tariq-ramadan-disagrees-with-pr-exercise-by-imams-refusing-funeral-prayers-for-london-attackers/',
1704 'info_dict': {
1705 'id': '1754168231264132',
1706 'ext': 'mp4',
1707 'title': 'About the Imams and Religious leaders refusing to perform funeral prayers for...',
1708 'uploader': 'Tariq Ramadan (official)',
1709 'timestamp': 1496758379,
1710 'upload_date': '20170606',
1711 },
1712 'params': {
1713 'skip_download': True,
1714 },
1715 },
1716 # Facebook API embed
1717 {
1718 'url': 'http://www.lothype.com/blue-stars-2016-preview-standstill-full-show/',
1719 'md5': 'a47372ee61b39a7b90287094d447d94e',
1720 'info_dict': {
1721 'id': '10153467542406923',
1722 'ext': 'mp4',
1723 'title': 'Facebook video #10153467542406923',
1724 },
1725 },
1726 # Wordpress "YouTube Video Importer" plugin
1727 {
1728 'url': 'http://www.lothype.com/blue-devils-drumline-stanford-lot-2016/',
1729 'md5': 'd16797741b560b485194eddda8121b48',
1730 'info_dict': {
1731 'id': 'HNTXWDXV9Is',
1732 'ext': 'mp4',
1733 'title': 'Blue Devils Drumline Stanford lot 2016',
1734 'upload_date': '20160627',
1735 'uploader_id': 'GENOCIDE8GENERAL10',
1736 'uploader': 'cylus cyrus',
1737 },
1738 },
1739 {
1740 # video stored on custom kaltura server
1741 'url': 'http://www.expansion.com/multimedia/videos.html?media=EQcM30NHIPv',
1742 'md5': '537617d06e64dfed891fa1593c4b30cc',
1743 'info_dict': {
1744 'id': '0_1iotm5bh',
1745 'ext': 'mp4',
1746 'title': 'Elecciones británicas: 5 lecciones para Rajoy',
1747 'description': 'md5:435a89d68b9760b92ce67ed227055f16',
1748 'uploader_id': 'videos.expansion@el-mundo.net',
1749 'upload_date': '20150429',
1750 'timestamp': 1430303472,
1751 },
1752 'add_ie': ['Kaltura'],
1753 },
1754 {
1755 # multiple kaltura embeds, nsfw
1756 'url': 'https://www.quartier-rouge.be/prive/femmes/kamila-avec-video-jaime-sadomie.html',
1757 'info_dict': {
1758 'id': 'kamila-avec-video-jaime-sadomie',
1759 'title': "Kamila avec vídeo “J'aime sadomie”",
1760 },
1761 'playlist_count': 8,
1762 },
1763 {
1764 # Non-standard Vimeo embed
1765 'url': 'https://openclassrooms.com/courses/understanding-the-web',
1766 'md5': '64d86f1c7d369afd9a78b38cbb88d80a',
1767 'info_dict': {
1768 'id': '148867247',
1769 'ext': 'mp4',
1770 'title': 'Understanding the web - Teaser',
1771 'description': 'This is "Understanding the web - Teaser" by openclassrooms on Vimeo, the home for high quality videos and the people who love them.',
1772 'upload_date': '20151214',
1773 'uploader': 'OpenClassrooms',
1774 'uploader_id': 'openclassrooms',
1775 },
1776 'add_ie': ['Vimeo'],
1777 },
1778 {
1779 # generic vimeo embed that requires original URL passed as Referer
1780 'url': 'http://racing4everyone.eu/2016/07/30/formula-1-2016-round12-germany/',
1781 'only_matching': True,
1782 },
1783 {
1784 'url': 'https://support.arkena.com/display/PLAY/Ways+to+embed+your+video',
1785 'md5': 'b96f2f71b359a8ecd05ce4e1daa72365',
1786 'info_dict': {
1787 'id': 'b41dda37-d8e7-4d3f-b1b5-9a9db578bdfe',
1788 'ext': 'mp4',
1789 'title': 'Big Buck Bunny',
1790 'description': 'Royalty free test video',
1791 'timestamp': 1432816365,
1792 'upload_date': '20150528',
1793 'is_live': False,
1794 },
1795 'params': {
1796 'skip_download': True,
1797 },
1798 'add_ie': [ArkenaIE.ie_key()],
1799 },
1800 {
1801 '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/',
1802 'info_dict': {
1803 'id': '1c7141f46c',
1804 'ext': 'mp4',
1805 'title': 'НА КОСЪМ ОТ ВЗРИВ: Изтичане на газ на бензиностанция в Пловдив',
1806 },
1807 'params': {
1808 'skip_download': True,
1809 },
1810 'add_ie': [Vbox7IE.ie_key()],
1811 },
1812 {
1813 # DBTV embeds
1814 'url': 'http://www.dagbladet.no/2016/02/23/nyheter/nordlys/ski/troms/ver/43254897/',
1815 'info_dict': {
1816 'id': '43254897',
1817 'title': 'Etter ett års planlegging, klaffet endelig alt: - Jeg måtte ta en liten dans',
1818 },
1819 'playlist_mincount': 3,
1820 },
1821 {
1822 # Videa embeds
1823 'url': 'http://forum.dvdtalk.com/movie-talk/623756-deleted-magic-star-wars-ot-deleted-alt-scenes-docu-style.html',
1824 'info_dict': {
1825 'id': '623756-deleted-magic-star-wars-ot-deleted-alt-scenes-docu-style',
1826 'title': 'Deleted Magic - Star Wars: OT Deleted / Alt. Scenes Docu. Style - DVD Talk Forum',
1827 },
1828 'playlist_mincount': 2,
1829 },
1830 {
1831 # 20 minuten embed
1832 'url': 'http://www.20min.ch/schweiz/news/story/So-kommen-Sie-bei-Eis-und-Schnee-sicher-an-27032552',
1833 'info_dict': {
1834 'id': '523629',
1835 'ext': 'mp4',
1836 'title': 'So kommen Sie bei Eis und Schnee sicher an',
1837 'description': 'md5:117c212f64b25e3d95747e5276863f7d',
1838 },
1839 'params': {
1840 'skip_download': True,
1841 },
1842 'add_ie': [TwentyMinutenIE.ie_key()],
1843 },
1844 {
1845 # VideoPress embed
1846 'url': 'https://en.support.wordpress.com/videopress/',
1847 'info_dict': {
1848 'id': 'OcobLTqC',
1849 'ext': 'm4v',
1850 'title': 'IMG_5786',
1851 'timestamp': 1435711927,
1852 'upload_date': '20150701',
1853 },
1854 'params': {
1855 'skip_download': True,
1856 },
1857 'add_ie': [VideoPressIE.ie_key()],
1858 },
1859 {
1860 # Rutube embed
1861 'url': 'http://magazzino.friday.ru/videos/vipuski/kazan-2',
1862 'info_dict': {
1863 'id': '9b3d5bee0a8740bf70dfd29d3ea43541',
1864 'ext': 'flv',
1865 'title': 'Магаззино: Казань 2',
1866 'description': 'md5:99bccdfac2269f0e8fdbc4bbc9db184a',
1867 'uploader': 'Магаззино',
1868 'upload_date': '20170228',
1869 'uploader_id': '996642',
1870 },
1871 'params': {
1872 'skip_download': True,
1873 },
1874 'add_ie': [RutubeIE.ie_key()],
1875 },
1876 {
1877 'url': 'https://www.skai.gr/news/world/iatrikos-syllogos-tourkias-to-turkovac-aplo-dialyma-erntogan-eiste-apateones-kai-pseytes',
1878 'info_dict': {
1879 'id': 'v-ch2nkhcirwc9-sf',
1880 'ext': 'mp4',
1881 'title': 'md5:786e1e24e06c55993cee965ef853a0c1',
1882 'description': 'md5:8b517a61d577efe7e36fde72fd535995',
1883 'timestamp': 1641885019,
1884 'upload_date': '20220111',
1885 'duration': 460000,
1886 },
1887 },
1888 {
1889 # ThePlatform embedded with whitespaces in URLs
1890 'url': 'http://www.golfchannel.com/topics/shows/golftalkcentral.htm',
1891 'only_matching': True,
1892 },
1893 {
1894 # Senate ISVP iframe https
1895 'url': 'https://www.hsgac.senate.gov/hearings/canadas-fast-track-refugee-plan-unanswered-questions-and-implications-for-us-national-security',
1896 'md5': 'fb8c70b0b515e5037981a2492099aab8',
1897 'info_dict': {
1898 'id': 'govtaff020316',
1899 'ext': 'mp4',
1900 'title': 'Integrated Senate Video Player',
1901 },
1902 'add_ie': [SenateISVPIE.ie_key()],
1903 },
1904 {
1905 # Limelight embeds (1 channel embed + 4 media embeds)
1906 'url': 'http://www.sedona.com/FacilitatorTraining2017',
1907 'info_dict': {
1908 'id': 'FacilitatorTraining2017',
1909 'title': 'Facilitator Training 2017',
1910 },
1911 'playlist_mincount': 5,
1912 },
1913 {
1914 # Limelight embed (LimelightPlayerUtil.embed)
1915 'url': 'https://tv5.ca/videos?v=xuu8qowr291ri',
1916 'info_dict': {
1917 'id': '95d035dc5c8a401588e9c0e6bd1e9c92',
1918 'ext': 'mp4',
1919 'title': '07448641',
1920 'timestamp': 1499890639,
1921 'upload_date': '20170712',
1922 },
1923 'params': {
1924 'skip_download': True,
1925 },
1926 'add_ie': ['LimelightMedia'],
1927 },
1928 {
1929 'url': 'http://kron4.com/2017/04/28/standoff-with-walnut-creek-murder-suspect-ends-with-arrest/',
1930 'info_dict': {
1931 'id': 'standoff-with-walnut-creek-murder-suspect-ends-with-arrest',
1932 'title': 'Standoff with Walnut Creek murder suspect ends',
1933 'description': 'md5:3ccc48a60fc9441eeccfc9c469ebf788',
1934 },
1935 'playlist_mincount': 4,
1936 },
1937 {
1938 # WashingtonPost embed
1939 'url': 'http://www.vanityfair.com/hollywood/2017/04/donald-trump-tv-pitches',
1940 'info_dict': {
1941 'id': '8caf6e88-d0ec-11e5-90d3-34c2c42653ac',
1942 'ext': 'mp4',
1943 'title': "No one has seen the drama series based on Trump's life \u2014 until now",
1944 '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.',
1945 'timestamp': 1455216756,
1946 'uploader': 'The Washington Post',
1947 'upload_date': '20160211',
1948 },
1949 'add_ie': [WashingtonPostIE.ie_key()],
1950 },
1951 {
1952 # Mediaset embed
1953 'url': 'http://www.tgcom24.mediaset.it/politica/serracchiani-voglio-vivere-in-una-societa-aperta-reazioni-sproporzionate-_3071354-201702a.shtml',
1954 'info_dict': {
1955 'id': '720642',
1956 'ext': 'mp4',
1957 'title': 'Serracchiani: "Voglio vivere in una società aperta, con tutela del patto di fiducia"',
1958 },
1959 'params': {
1960 'skip_download': True,
1961 },
1962 'add_ie': [MediasetIE.ie_key()],
1963 },
1964 {
1965 # JOJ.sk embeds
1966 'url': 'https://www.noviny.sk/slovensko/238543-slovenskom-sa-prehnala-vlna-silnych-burok',
1967 'info_dict': {
1968 'id': '238543-slovenskom-sa-prehnala-vlna-silnych-burok',
1969 'title': 'Slovenskom sa prehnala vlna silných búrok',
1970 },
1971 'playlist_mincount': 5,
1972 'add_ie': [JojIE.ie_key()],
1973 },
1974 {
1975 # AMP embed (see https://www.ampproject.org/docs/reference/components/amp-video)
1976 'url': 'https://tvrain.ru/amp/418921/',
1977 'md5': 'cc00413936695987e8de148b67d14f1d',
1978 'info_dict': {
1979 'id': '418921',
1980 'ext': 'mp4',
1981 'title': 'Стас Намин: «Мы нарушили девственность Кремля»',
1982 },
1983 },
1984 {
1985 # vzaar embed
1986 'url': 'http://help.vzaar.com/article/165-embedding-video',
1987 'md5': '7e3919d9d2620b89e3e00bec7fe8c9d4',
1988 'info_dict': {
1989 'id': '8707641',
1990 'ext': 'mp4',
1991 'title': 'Building A Business Online: Principal Chairs Q & A',
1992 },
1993 },
1994 {
1995 # multiple HTML5 videos on one page
1996 'url': 'https://www.paragon-software.com/home/rk-free/keyscenarios.html',
1997 'info_dict': {
1998 'id': 'keyscenarios',
1999 'title': 'Rescue Kit 14 Free Edition - Getting started',
2000 },
2001 'playlist_count': 4,
2002 },
2003 {
2004 # vshare embed
2005 'url': 'https://youtube-dl-demo.neocities.org/vshare.html',
2006 'md5': '17b39f55b5497ae8b59f5fbce8e35886',
2007 'info_dict': {
2008 'id': '0f64ce6',
2009 'title': 'vl14062007715967',
2010 'ext': 'mp4',
2011 }
2012 },
2013 {
2014 'url': 'http://www.heidelberg-laureate-forum.org/blog/video/lecture-friday-september-23-2016-sir-c-antony-r-hoare/',
2015 'md5': 'aecd089f55b1cb5a59032cb049d3a356',
2016 'info_dict': {
2017 'id': '90227f51a80c4d8f86c345a7fa62bd9a1d',
2018 'ext': 'mp4',
2019 'title': 'Lecture: Friday, September 23, 2016 - Sir Tony Hoare',
2020 'description': 'md5:5a51db84a62def7b7054df2ade403c6c',
2021 'timestamp': 1474354800,
2022 'upload_date': '20160920',
2023 }
2024 },
2025 {
2026 'url': 'http://www.kidzworld.com/article/30935-trolls-the-beat-goes-on-interview-skylar-astin-and-amanda-leighton',
2027 'info_dict': {
2028 'id': '1731611',
2029 'ext': 'mp4',
2030 'title': 'Official Trailer | TROLLS: THE BEAT GOES ON!',
2031 'description': 'md5:eb5f23826a027ba95277d105f248b825',
2032 'timestamp': 1516100691,
2033 'upload_date': '20180116',
2034 },
2035 'params': {
2036 'skip_download': True,
2037 },
2038 'add_ie': [SpringboardPlatformIE.ie_key()],
2039 },
2040 {
2041 'url': 'https://www.yapfiles.ru/show/1872528/690b05d3054d2dbe1e69523aa21bb3b1.mp4.html',
2042 'info_dict': {
2043 'id': 'vMDE4NzI1Mjgt690b',
2044 'ext': 'mp4',
2045 'title': 'Котята',
2046 },
2047 'add_ie': [YapFilesIE.ie_key()],
2048 'params': {
2049 'skip_download': True,
2050 },
2051 },
2052 {
2053 # CloudflareStream embed
2054 'url': 'https://www.cloudflare.com/products/cloudflare-stream/',
2055 'info_dict': {
2056 'id': '31c9291ab41fac05471db4e73aa11717',
2057 'ext': 'mp4',
2058 'title': '31c9291ab41fac05471db4e73aa11717',
2059 },
2060 'add_ie': [CloudflareStreamIE.ie_key()],
2061 'params': {
2062 'skip_download': True,
2063 },
2064 },
2065 {
2066 # PeerTube embed
2067 'url': 'https://joinpeertube.org/fr/home/',
2068 'info_dict': {
2069 'id': 'home',
2070 'title': 'Reprenez le contrôle de vos vidéos ! #JoinPeertube',
2071 },
2072 'playlist_count': 2,
2073 },
2074 {
2075 # Indavideo embed
2076 'url': 'https://streetkitchen.hu/receptek/igy_kell_otthon_hamburgert_sutni/',
2077 'info_dict': {
2078 'id': '1693903',
2079 'ext': 'mp4',
2080 'title': 'Így kell otthon hamburgert sütni',
2081 'description': 'md5:f5a730ecf900a5c852e1e00540bbb0f7',
2082 'timestamp': 1426330212,
2083 'upload_date': '20150314',
2084 'uploader': 'StreetKitchen',
2085 'uploader_id': '546363',
2086 },
2087 'add_ie': [IndavideoEmbedIE.ie_key()],
2088 'params': {
2089 'skip_download': True,
2090 },
2091 },
2092 {
2093 # APA embed via JWPlatform embed
2094 'url': 'http://www.vol.at/blue-man-group/5593454',
2095 'info_dict': {
2096 'id': 'jjv85FdZ',
2097 'ext': 'mp4',
2098 'title': '"Blau ist mysteriös": Die Blue Man Group im Interview',
2099 'description': 'md5:d41d8cd98f00b204e9800998ecf8427e',
2100 'thumbnail': r're:^https?://.*\.jpg$',
2101 'duration': 254,
2102 'timestamp': 1519211149,
2103 'upload_date': '20180221',
2104 },
2105 'params': {
2106 'skip_download': True,
2107 },
2108 },
2109 {
2110 'url': 'http://share-videos.se/auto/video/83645793?uid=13',
2111 'md5': 'b68d276de422ab07ee1d49388103f457',
2112 'info_dict': {
2113 'id': '83645793',
2114 'title': 'Lock up and get excited',
2115 'ext': 'mp4'
2116 },
2117 'skip': 'TODO: fix nested playlists processing in tests',
2118 },
2119 {
2120 # Viqeo embeds
2121 'url': 'https://viqeo.tv/',
2122 'info_dict': {
2123 'id': 'viqeo',
2124 'title': 'All-new video platform',
2125 },
2126 'playlist_count': 6,
2127 },
2128 {
2129 # Squarespace video embed, 2019-08-28
2130 'url': 'http://ootboxford.com',
2131 'info_dict': {
2132 'id': 'Tc7b_JGdZfw',
2133 'title': 'Out of the Blue, at Childish Things 10',
2134 'ext': 'mp4',
2135 'description': 'md5:a83d0026666cf5ee970f8bd1cfd69c7f',
2136 'uploader_id': 'helendouglashouse',
2137 'uploader': 'Helen & Douglas House',
2138 'upload_date': '20140328',
2139 },
2140 'params': {
2141 'skip_download': True,
2142 },
2143 },
2144 # {
2145 # # Zype embed
2146 # 'url': 'https://www.cookscountry.com/episode/554-smoky-barbecue-favorites',
2147 # 'info_dict': {
2148 # 'id': '5b400b834b32992a310622b9',
2149 # 'ext': 'mp4',
2150 # 'title': 'Smoky Barbecue Favorites',
2151 # 'thumbnail': r're:^https?://.*\.jpe?g',
2152 # 'description': 'md5:5ff01e76316bd8d46508af26dc86023b',
2153 # 'upload_date': '20170909',
2154 # 'timestamp': 1504915200,
2155 # },
2156 # 'add_ie': [ZypeIE.ie_key()],
2157 # 'params': {
2158 # 'skip_download': True,
2159 # },
2160 # },
2161 {
2162 # videojs embed
2163 'url': 'https://video.sibnet.ru/shell.php?videoid=3422904',
2164 'info_dict': {
2165 'id': 'shell',
2166 'ext': 'mp4',
2167 'title': 'Доставщик пиццы спросил разрешения сыграть на фортепиано',
2168 'description': 'md5:89209cdc587dab1e4a090453dbaa2cb1',
2169 'thumbnail': r're:^https?://.*\.jpg$',
2170 },
2171 'params': {
2172 'skip_download': True,
2173 },
2174 'expected_warnings': ['Failed to download MPD manifest'],
2175 },
2176 {
2177 # DailyMotion embed with DM.player
2178 'url': 'https://www.beinsports.com/us/copa-del-rey/video/the-locker-room-valencia-beat-barca-in-copa/1203804',
2179 'info_dict': {
2180 'id': 'k6aKkGHd9FJs4mtJN39',
2181 'ext': 'mp4',
2182 'title': 'The Locker Room: Valencia Beat Barca In Copa del Rey Final',
2183 'description': 'This video is private.',
2184 'uploader_id': 'x1jf30l',
2185 'uploader': 'beIN SPORTS USA',
2186 'upload_date': '20190528',
2187 'timestamp': 1559062971,
2188 },
2189 'params': {
2190 'skip_download': True,
2191 },
2192 },
2193 {
2194 # blogger embed
2195 'url': 'https://blog.tomeuvizoso.net/2019/01/a-panfrost-milestone.html',
2196 'md5': 'f1bc19b6ea1b0fd1d81e84ca9ec467ac',
2197 'info_dict': {
2198 'id': 'BLOGGER-video-3c740e3a49197e16-796',
2199 'ext': 'mp4',
2200 'title': 'Blogger',
2201 'thumbnail': r're:^https?://.*',
2202 },
2203 },
2204 # {
2205 # # TODO: find another test
2206 # # http://schema.org/VideoObject
2207 # 'url': 'https://flipagram.com/f/nyvTSJMKId',
2208 # 'md5': '888dcf08b7ea671381f00fab74692755',
2209 # 'info_dict': {
2210 # 'id': 'nyvTSJMKId',
2211 # 'ext': 'mp4',
2212 # 'title': 'Flipagram by sjuria101 featuring Midnight Memories by One Direction',
2213 # 'description': '#love for cats.',
2214 # 'timestamp': 1461244995,
2215 # 'upload_date': '20160421',
2216 # },
2217 # 'params': {
2218 # 'force_generic_extractor': True,
2219 # },
2220 # },
2221 {
2222 # VHX Embed
2223 'url': 'https://demo.vhx.tv/category-c/videos/file-example-mp4-480-1-5mg-copy',
2224 'info_dict': {
2225 'id': '858208',
2226 'ext': 'mp4',
2227 'title': 'Untitled',
2228 'uploader_id': 'user80538407',
2229 'uploader': 'OTT Videos',
2230 },
2231 },
2232 {
2233 # ArcPublishing PoWa video player
2234 'url': 'https://www.adn.com/politics/2020/11/02/video-senate-candidates-campaign-in-anchorage-on-eve-of-election-day/',
2235 'md5': 'b03b2fac8680e1e5a7cc81a5c27e71b3',
2236 'info_dict': {
2237 'id': '8c99cb6e-b29c-4bc9-9173-7bf9979225ab',
2238 'ext': 'mp4',
2239 'title': 'Senate candidates wave to voters on Anchorage streets',
2240 'description': 'md5:91f51a6511f090617353dc720318b20e',
2241 'timestamp': 1604378735,
2242 'upload_date': '20201103',
2243 'duration': 1581,
2244 },
2245 },
2246 {
2247 # MyChannels SDK embed
2248 # https://www.24kitchen.nl/populair/deskundige-dit-waarom-sommigen-gevoelig-zijn-voor-voedselallergieen
2249 'url': 'https://www.demorgen.be/nieuws/burgemeester-rotterdam-richt-zich-in-videoboodschap-tot-relschoppers-voelt-het-goed~b0bcfd741/',
2250 'md5': '90c0699c37006ef18e198c032d81739c',
2251 'info_dict': {
2252 'id': '194165',
2253 'ext': 'mp4',
2254 'title': 'Burgemeester Aboutaleb spreekt relschoppers toe',
2255 'timestamp': 1611740340,
2256 'upload_date': '20210127',
2257 'duration': 159,
2258 },
2259 },
2260 {
2261 # Simplecast player embed
2262 'url': 'https://www.bio.org/podcast',
2263 'info_dict': {
2264 'id': 'podcast',
2265 'title': 'I AM BIO Podcast | BIO',
2266 },
2267 'playlist_mincount': 52,
2268 },
2269 {
2270 # Sibnet embed (https://help.sibnet.ru/?sibnet_video_embed)
2271 'url': 'https://phpbb3.x-tk.ru/bbcode-video-sibnet-t24.html',
2272 'only_matching': True,
2273 }, {
2274 # WimTv embed player
2275 'url': 'http://www.msmotor.tv/wearefmi-pt-2-2021/',
2276 'info_dict': {
2277 'id': 'wearefmi-pt-2-2021',
2278 'title': '#WEAREFMI – PT.2 – 2021 – MsMotorTV',
2279 },
2280 'playlist_count': 1,
2281 }, {
2282 # KVS Player
2283 'url': 'https://www.kvs-demo.com/videos/105/kelis-4th-of-july/',
2284 'info_dict': {
2285 'id': '105',
2286 'display_id': 'kelis-4th-of-july',
2287 'ext': 'mp4',
2288 'title': 'Kelis - 4th Of July',
2289 'thumbnail': 'https://kvs-demo.com/contents/videos_screenshots/0/105/preview.jpg',
2290 },
2291 'params': {
2292 'skip_download': True,
2293 },
2294 }, {
2295 # KVS Player
2296 'url': 'https://www.kvs-demo.com/embed/105/',
2297 'info_dict': {
2298 'id': '105',
2299 'display_id': 'kelis-4th-of-july',
2300 'ext': 'mp4',
2301 'title': 'Kelis - 4th Of July / Embed Player',
2302 'thumbnail': 'https://kvs-demo.com/contents/videos_screenshots/0/105/preview.jpg',
2303 },
2304 'params': {
2305 'skip_download': True,
2306 },
2307 }, {
2308 # KVS Player
2309 'url': 'https://thisvid.com/videos/french-boy-pantsed/',
2310 'md5': '3397979512c682f6b85b3b04989df224',
2311 'info_dict': {
2312 'id': '2400174',
2313 'display_id': 'french-boy-pantsed',
2314 'ext': 'mp4',
2315 'title': 'French Boy Pantsed - ThisVid.com',
2316 'thumbnail': 'https://media.thisvid.com/contents/videos_screenshots/2400000/2400174/preview.mp4.jpg',
2317 }
2318 }, {
2319 # KVS Player
2320 'url': 'https://thisvid.com/embed/2400174/',
2321 'md5': '3397979512c682f6b85b3b04989df224',
2322 'info_dict': {
2323 'id': '2400174',
2324 'display_id': 'french-boy-pantsed',
2325 'ext': 'mp4',
2326 'title': 'French Boy Pantsed - ThisVid.com',
2327 'thumbnail': 'https://media.thisvid.com/contents/videos_screenshots/2400000/2400174/preview.mp4.jpg',
2328 }
2329 }, {
2330 # KVS Player
2331 'url': 'https://youix.com/video/leningrad-zoj/',
2332 'md5': '94f96ba95706dc3880812b27b7d8a2b8',
2333 'info_dict': {
2334 'id': '18485',
2335 'display_id': 'leningrad-zoj',
2336 'ext': 'mp4',
2337 'title': 'Клип: Ленинград - ЗОЖ скачать, смотреть онлайн | Youix.com',
2338 'thumbnail': 'https://youix.com/contents/videos_screenshots/18000/18485/preview_480x320_youix_com.mp4.jpg',
2339 }
2340 }, {
2341 # KVS Player
2342 'url': 'https://youix.com/embed/18485',
2343 'md5': '94f96ba95706dc3880812b27b7d8a2b8',
2344 'info_dict': {
2345 'id': '18485',
2346 'display_id': 'leningrad-zoj',
2347 'ext': 'mp4',
2348 'title': 'Ленинград - ЗОЖ',
2349 'thumbnail': 'https://youix.com/contents/videos_screenshots/18000/18485/preview_480x320_youix_com.mp4.jpg',
2350 }
2351 }, {
2352 # KVS Player
2353 'url': 'https://bogmedia.org/videos/21217/40-nochey-40-nights-2016/',
2354 'md5': '94166bdb26b4cb1fb9214319a629fc51',
2355 'info_dict': {
2356 'id': '21217',
2357 'display_id': '40-nochey-40-nights-2016',
2358 'ext': 'mp4',
2359 'title': '40 ночей (2016) - BogMedia.org',
2360 'thumbnail': 'https://bogmedia.org/contents/videos_screenshots/21000/21217/preview_480p.mp4.jpg',
2361 }
2362 },
2363 {
2364 # KVS Player (for sites that serve kt_player.js via non-https urls)
2365 'url': 'http://www.camhub.world/embed/389508',
2366 'md5': 'fbe89af4cfb59c8fd9f34a202bb03e32',
2367 'info_dict': {
2368 'id': '389508',
2369 'display_id': 'syren-de-mer-onlyfans-05-07-2020have-a-happy-safe-holiday5f014e68a220979bdb8cd-source',
2370 'ext': 'mp4',
2371 'title': 'Syren De Mer onlyfans_05-07-2020Have_a_happy_safe_holiday5f014e68a220979bdb8cd_source / Embed плеер',
2372 'thumbnail': 'http://www.camhub.world/contents/videos_screenshots/389000/389508/preview.mp4.jpg',
2373 }
2374 },
2375 {
2376 # Reddit-hosted video that will redirect and be processed by RedditIE
2377 # Redirects to https://www.reddit.com/r/videos/comments/6rrwyj/that_small_heart_attack/
2378 'url': 'https://v.redd.it/zv89llsvexdz',
2379 'md5': '87f5f02f6c1582654146f830f21f8662',
2380 'info_dict': {
2381 'id': 'zv89llsvexdz',
2382 'ext': 'mp4',
2383 'timestamp': 1501941939.0,
2384 'title': 'That small heart attack.',
2385 'upload_date': '20170805',
2386 'uploader': 'Antw87'
2387 }
2388 },
2389 {
2390 # 1080p Reddit-hosted video that will redirect and be processed by RedditIE
2391 'url': 'https://v.redd.it/33hgok7dfbz71/',
2392 'md5': '7a1d587940242c9bb3bd6eb320b39258',
2393 'info_dict': {
2394 'id': '33hgok7dfbz71',
2395 'ext': 'mp4',
2396 'title': "The game Didn't want me to Knife that Guy I guess",
2397 'uploader': 'paraf1ve',
2398 'timestamp': 1636788683.0,
2399 'upload_date': '20211113'
2400 }
2401 },
2402 {
2403 # MainStreaming player
2404 'url': 'https://www.lactv.it/2021/10/03/lac-news24-la-settimana-03-10-2021/',
2405 'info_dict': {
2406 'id': 'EUlZfGWkGpOd',
2407 'title': 'La Settimana ',
2408 'description': '03 Ottobre ore 02:00',
2409 'ext': 'mp4',
2410 'live_status': 'not_live',
2411 'thumbnail': r're:https?://[A-Za-z0-9-]*\.msvdn.net/image/\w+/poster',
2412 'duration': 1512
2413 }
2414 },
2415 {
2416 # Multiple gfycat iframe embeds
2417 'url': 'https://www.gezip.net/bbs/board.php?bo_table=entertaine&wr_id=613422',
2418 'info_dict': {
2419 'title': '재이, 윤, 세은 황금 드레스를 입고 빛난다',
2420 'id': 'board'
2421 },
2422 'playlist_count': 8,
2423 },
2424 {
2425 # Multiple gfycat gifs (direct links)
2426 'url': 'https://www.gezip.net/bbs/board.php?bo_table=entertaine&wr_id=612199',
2427 'info_dict': {
2428 'title': '옳게 된 크롭 니트 스테이씨 아이사',
2429 'id': 'board'
2430 },
2431 'playlist_count': 6
2432 },
2433 {
2434 # Multiple gfycat embeds, with uppercase "IFR" in urls
2435 'url': 'https://kkzz.kr/?vid=2295',
2436 'info_dict': {
2437 'title': '지방시 앰버서더 에스파 카리나 움짤',
2438 'id': '?vid=2295'
2439 },
2440 'playlist_count': 9
2441 }
2442 ]
2443
2444 def report_following_redirect(self, new_url):
2445 """Report information extraction."""
2446 self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
2447
2448 def report_detected(self, name):
2449 self._downloader.write_debug(f'Identified a {name}')
2450
2451 def _extract_rss(self, url, video_id, doc):
2452 playlist_title = doc.find('./channel/title').text
2453 playlist_desc_el = doc.find('./channel/description')
2454 playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
2455
2456 NS_MAP = {
2457 'itunes': 'http://www.itunes.com/dtds/podcast-1.0.dtd',
2458 }
2459
2460 entries = []
2461 for it in doc.findall('./channel/item'):
2462 next_url = None
2463 enclosure_nodes = it.findall('./enclosure')
2464 for e in enclosure_nodes:
2465 next_url = e.attrib.get('url')
2466 if next_url:
2467 break
2468
2469 if not next_url:
2470 next_url = xpath_text(it, 'link', fatal=False)
2471
2472 if not next_url:
2473 continue
2474
2475 def itunes(key):
2476 return xpath_text(
2477 it, xpath_with_ns('./itunes:%s' % key, NS_MAP),
2478 default=None)
2479
2480 duration = itunes('duration')
2481 explicit = (itunes('explicit') or '').lower()
2482 if explicit in ('true', 'yes'):
2483 age_limit = 18
2484 elif explicit in ('false', 'no'):
2485 age_limit = 0
2486 else:
2487 age_limit = None
2488
2489 entries.append({
2490 '_type': 'url_transparent',
2491 'url': next_url,
2492 'title': it.find('title').text,
2493 'description': xpath_text(it, 'description', default=None),
2494 'timestamp': unified_timestamp(
2495 xpath_text(it, 'pubDate', default=None)),
2496 'duration': int_or_none(duration) or parse_duration(duration),
2497 'thumbnail': url_or_none(xpath_attr(it, xpath_with_ns('./itunes:image', NS_MAP), 'href')),
2498 'episode': itunes('title'),
2499 'episode_number': int_or_none(itunes('episode')),
2500 'season_number': int_or_none(itunes('season')),
2501 'age_limit': age_limit,
2502 })
2503
2504 return {
2505 '_type': 'playlist',
2506 'id': url,
2507 'title': playlist_title,
2508 'description': playlist_desc,
2509 'entries': entries,
2510 }
2511
2512 def _extract_camtasia(self, url, video_id, webpage):
2513 """ Returns None if no camtasia video can be found. """
2514
2515 camtasia_cfg = self._search_regex(
2516 r'fo\.addVariable\(\s*"csConfigFile",\s*"([^"]+)"\s*\);',
2517 webpage, 'camtasia configuration file', default=None)
2518 if camtasia_cfg is None:
2519 return None
2520
2521 title = self._html_search_meta('DC.title', webpage, fatal=True)
2522
2523 camtasia_url = compat_urlparse.urljoin(url, camtasia_cfg)
2524 camtasia_cfg = self._download_xml(
2525 camtasia_url, video_id,
2526 note='Downloading camtasia configuration',
2527 errnote='Failed to download camtasia configuration')
2528 fileset_node = camtasia_cfg.find('./playlist/array/fileset')
2529
2530 entries = []
2531 for n in fileset_node.getchildren():
2532 url_n = n.find('./uri')
2533 if url_n is None:
2534 continue
2535
2536 entries.append({
2537 'id': os.path.splitext(url_n.text.rpartition('/')[2])[0],
2538 'title': '%s - %s' % (title, n.tag),
2539 'url': compat_urlparse.urljoin(url, url_n.text),
2540 'duration': float_or_none(n.find('./duration').text),
2541 })
2542
2543 return {
2544 '_type': 'playlist',
2545 'entries': entries,
2546 'title': title,
2547 }
2548
2549 def _kvs_getrealurl(self, video_url, license_code):
2550 if not video_url.startswith('function/0/'):
2551 return video_url # not obfuscated
2552
2553 url_path, _, url_query = video_url.partition('?')
2554 urlparts = url_path.split('/')[2:]
2555 license = self._kvs_getlicensetoken(license_code)
2556 newmagic = urlparts[5][:32]
2557
2558 for o in range(len(newmagic) - 1, -1, -1):
2559 new = ''
2560 l = (o + sum([int(n) for n in license[o:]])) % 32
2561
2562 for i in range(0, len(newmagic)):
2563 if i == o:
2564 new += newmagic[l]
2565 elif i == l:
2566 new += newmagic[o]
2567 else:
2568 new += newmagic[i]
2569 newmagic = new
2570
2571 urlparts[5] = newmagic + urlparts[5][32:]
2572 return '/'.join(urlparts) + '?' + url_query
2573
2574 def _kvs_getlicensetoken(self, license):
2575 modlicense = license.replace('$', '').replace('0', '1')
2576 center = int(len(modlicense) / 2)
2577 fronthalf = int(modlicense[:center + 1])
2578 backhalf = int(modlicense[center:])
2579
2580 modlicense = str(4 * abs(fronthalf - backhalf))
2581 retval = ''
2582 for o in range(0, center + 1):
2583 for i in range(1, 5):
2584 retval += str((int(license[o + i]) + int(modlicense[o])) % 10)
2585 return retval
2586
2587 def _real_extract(self, url):
2588 if url.startswith('//'):
2589 return self.url_result(self.http_scheme() + url)
2590
2591 parsed_url = compat_urlparse.urlparse(url)
2592 if not parsed_url.scheme:
2593 default_search = self.get_param('default_search')
2594 if default_search is None:
2595 default_search = 'fixup_error'
2596
2597 if default_search in ('auto', 'auto_warning', 'fixup_error'):
2598 if re.match(r'^[^\s/]+\.[^\s/]+/', url):
2599 self.report_warning('The url doesn\'t specify the protocol, trying with http')
2600 return self.url_result('http://' + url)
2601 elif default_search != 'fixup_error':
2602 if default_search == 'auto_warning':
2603 if re.match(r'^(?:url|URL)$', url):
2604 raise ExtractorError(
2605 'Invalid URL: %r . Call yt-dlp like this: yt-dlp -v "https://www.youtube.com/watch?v=BaW_jenozKc" ' % url,
2606 expected=True)
2607 else:
2608 self.report_warning(
2609 'Falling back to youtube search for %s . Set --default-search "auto" to suppress this warning.' % url)
2610 return self.url_result('ytsearch:' + url)
2611
2612 if default_search in ('error', 'fixup_error'):
2613 raise ExtractorError(
2614 '%r is not a valid URL. '
2615 'Set --default-search "ytsearch" (or run yt-dlp "ytsearch:%s" ) to search YouTube'
2616 % (url, url), expected=True)
2617 else:
2618 if ':' not in default_search:
2619 default_search += ':'
2620 return self.url_result(default_search + url)
2621
2622 url, smuggled_data = unsmuggle_url(url)
2623 force_videoid = None
2624 is_intentional = smuggled_data and smuggled_data.get('to_generic')
2625 if smuggled_data and 'force_videoid' in smuggled_data:
2626 force_videoid = smuggled_data['force_videoid']
2627 video_id = force_videoid
2628 else:
2629 video_id = self._generic_id(url)
2630
2631 self.to_screen('%s: Requesting header' % video_id)
2632
2633 head_req = HEADRequest(url)
2634 head_response = self._request_webpage(
2635 head_req, video_id,
2636 note=False, errnote='Could not send HEAD request to %s' % url,
2637 fatal=False)
2638
2639 if head_response is not False:
2640 # Check for redirect
2641 new_url = head_response.geturl()
2642 if url != new_url:
2643 self.report_following_redirect(new_url)
2644 if force_videoid:
2645 new_url = smuggle_url(
2646 new_url, {'force_videoid': force_videoid})
2647 return self.url_result(new_url)
2648
2649 full_response = None
2650 if head_response is False:
2651 request = sanitized_Request(url)
2652 request.add_header('Accept-Encoding', '*')
2653 full_response = self._request_webpage(request, video_id)
2654 head_response = full_response
2655
2656 info_dict = {
2657 'id': video_id,
2658 'title': self._generic_title(url),
2659 'timestamp': unified_timestamp(head_response.headers.get('Last-Modified'))
2660 }
2661
2662 # Check for direct link to a video
2663 content_type = head_response.headers.get('Content-Type', '').lower()
2664 m = re.match(r'^(?P<type>audio|video|application(?=/(?:ogg$|(?:vnd\.apple\.|x-)?mpegurl)))/(?P<format_id>[^;\s]+)', content_type)
2665 if m:
2666 self.report_detected('direct video link')
2667 format_id = compat_str(m.group('format_id'))
2668 subtitles = {}
2669 if format_id.endswith('mpegurl'):
2670 formats, subtitles = self._extract_m3u8_formats_and_subtitles(url, video_id, 'mp4')
2671 elif format_id.endswith('mpd') or format_id.endswith('dash+xml'):
2672 formats, subtitles = self._extract_mpd_formats_and_subtitles(url, video_id)
2673 elif format_id == 'f4m':
2674 formats = self._extract_f4m_formats(url, video_id)
2675 else:
2676 formats = [{
2677 'format_id': format_id,
2678 'url': url,
2679 'vcodec': 'none' if m.group('type') == 'audio' else None
2680 }]
2681 info_dict['direct'] = True
2682 self._sort_formats(formats)
2683 info_dict['formats'] = formats
2684 info_dict['subtitles'] = subtitles
2685 return info_dict
2686
2687 if not self.get_param('test', False) and not is_intentional:
2688 force = self.get_param('force_generic_extractor', False)
2689 self.report_warning(
2690 '%s on generic information extractor.' % ('Forcing' if force else 'Falling back'))
2691
2692 if not full_response:
2693 request = sanitized_Request(url)
2694 # Some webservers may serve compressed content of rather big size (e.g. gzipped flac)
2695 # making it impossible to download only chunk of the file (yet we need only 512kB to
2696 # test whether it's HTML or not). According to yt-dlp default Accept-Encoding
2697 # that will always result in downloading the whole file that is not desirable.
2698 # Therefore for extraction pass we have to override Accept-Encoding to any in order
2699 # to accept raw bytes and being able to download only a chunk.
2700 # It may probably better to solve this by checking Content-Type for application/octet-stream
2701 # after HEAD request finishes, but not sure if we can rely on this.
2702 request.add_header('Accept-Encoding', '*')
2703 full_response = self._request_webpage(request, video_id)
2704
2705 first_bytes = full_response.read(512)
2706
2707 # Is it an M3U playlist?
2708 if first_bytes.startswith(b'#EXTM3U'):
2709 self.report_detected('M3U playlist')
2710 info_dict['formats'], info_dict['subtitles'] = self._extract_m3u8_formats_and_subtitles(url, video_id, 'mp4')
2711 self._sort_formats(info_dict['formats'])
2712 return info_dict
2713
2714 # Maybe it's a direct link to a video?
2715 # Be careful not to download the whole thing!
2716 if not is_html(first_bytes):
2717 self.report_warning(
2718 'URL could be a direct video link, returning it as such.')
2719 info_dict.update({
2720 'direct': True,
2721 'url': url,
2722 })
2723 return info_dict
2724
2725 webpage = self._webpage_read_content(
2726 full_response, url, video_id, prefix=first_bytes)
2727
2728 if '<title>DPG Media Privacy Gate</title>' in webpage:
2729 webpage = self._download_webpage(url, video_id)
2730
2731 self.report_extraction(video_id)
2732
2733 # Is it an RSS feed, a SMIL file, an XSPF playlist or a MPD manifest?
2734 try:
2735 try:
2736 doc = compat_etree_fromstring(webpage)
2737 except compat_xml_parse_error:
2738 doc = compat_etree_fromstring(webpage.encode('utf-8'))
2739 if doc.tag == 'rss':
2740 self.report_detected('RSS feed')
2741 return self._extract_rss(url, video_id, doc)
2742 elif doc.tag == 'SmoothStreamingMedia':
2743 info_dict['formats'], info_dict['subtitles'] = self._parse_ism_formats_and_subtitles(doc, url)
2744 self.report_detected('ISM manifest')
2745 self._sort_formats(info_dict['formats'])
2746 return info_dict
2747 elif re.match(r'^(?:{[^}]+})?smil$', doc.tag):
2748 smil = self._parse_smil(doc, url, video_id)
2749 self.report_detected('SMIL file')
2750 self._sort_formats(smil['formats'])
2751 return smil
2752 elif doc.tag == '{http://xspf.org/ns/0/}playlist':
2753 self.report_detected('XSPF playlist')
2754 return self.playlist_result(
2755 self._parse_xspf(
2756 doc, video_id, xspf_url=url,
2757 xspf_base_url=full_response.geturl()),
2758 video_id)
2759 elif re.match(r'(?i)^(?:{[^}]+})?MPD$', doc.tag):
2760 info_dict['formats'], info_dict['subtitles'] = self._parse_mpd_formats_and_subtitles(
2761 doc,
2762 mpd_base_url=full_response.geturl().rpartition('/')[0],
2763 mpd_url=url)
2764 self.report_detected('DASH manifest')
2765 self._sort_formats(info_dict['formats'])
2766 return info_dict
2767 elif re.match(r'^{http://ns\.adobe\.com/f4m/[12]\.0}manifest$', doc.tag):
2768 info_dict['formats'] = self._parse_f4m_formats(doc, url, video_id)
2769 self.report_detected('F4M manifest')
2770 self._sort_formats(info_dict['formats'])
2771 return info_dict
2772 except compat_xml_parse_error:
2773 pass
2774
2775 # Is it a Camtasia project?
2776 camtasia_res = self._extract_camtasia(url, video_id, webpage)
2777 if camtasia_res is not None:
2778 self.report_detected('Camtasia video')
2779 return camtasia_res
2780
2781 # Sometimes embedded video player is hidden behind percent encoding
2782 # (e.g. https://github.com/ytdl-org/youtube-dl/issues/2448)
2783 # Unescaping the whole page allows to handle those cases in a generic way
2784 # FIXME: unescaping the whole page may break URLs, commenting out for now.
2785 # There probably should be a second run of generic extractor on unescaped webpage.
2786 # webpage = compat_urllib_parse_unquote(webpage)
2787
2788 # Unescape squarespace embeds to be detected by generic extractor,
2789 # see https://github.com/ytdl-org/youtube-dl/issues/21294
2790 webpage = re.sub(
2791 r'<div[^>]+class=[^>]*?\bsqs-video-wrapper\b[^>]*>',
2792 lambda x: unescapeHTML(x.group(0)), webpage)
2793
2794 # it's tempting to parse this further, but you would
2795 # have to take into account all the variations like
2796 # Video Title - Site Name
2797 # Site Name | Video Title
2798 # Video Title - Tagline | Site Name
2799 # and so on and so forth; it's just not practical
2800 video_title = self._og_search_title(
2801 webpage, default=None) or self._html_search_regex(
2802 r'(?s)<title>(.*?)</title>', webpage, 'video title',
2803 default='video')
2804
2805 # Try to detect age limit automatically
2806 age_limit = self._rta_search(webpage)
2807 # And then there are the jokers who advertise that they use RTA,
2808 # but actually don't.
2809 AGE_LIMIT_MARKERS = [
2810 r'Proudly Labeled <a href="http://www\.rtalabel\.org/" title="Restricted to Adults">RTA</a>',
2811 ]
2812 if any(re.search(marker, webpage) for marker in AGE_LIMIT_MARKERS):
2813 age_limit = 18
2814
2815 # video uploader is domain name
2816 video_uploader = self._search_regex(
2817 r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
2818
2819 video_description = self._og_search_description(webpage, default=None)
2820 video_thumbnail = self._og_search_thumbnail(webpage, default=None)
2821
2822 info_dict.update({
2823 'title': video_title,
2824 'description': video_description,
2825 'thumbnail': video_thumbnail,
2826 'age_limit': age_limit,
2827 })
2828
2829 self._downloader.write_debug('Looking for video embeds')
2830
2831 # Look for Brightcove Legacy Studio embeds
2832 bc_urls = BrightcoveLegacyIE._extract_brightcove_urls(webpage)
2833 if bc_urls:
2834 entries = [{
2835 '_type': 'url',
2836 'url': smuggle_url(bc_url, {'Referer': url}),
2837 'ie_key': 'BrightcoveLegacy'
2838 } for bc_url in bc_urls]
2839
2840 return {
2841 '_type': 'playlist',
2842 'title': video_title,
2843 'id': video_id,
2844 'entries': entries,
2845 }
2846
2847 # Look for Brightcove New Studio embeds
2848 bc_urls = BrightcoveNewIE._extract_urls(self, webpage)
2849 if bc_urls:
2850 return self.playlist_from_matches(
2851 bc_urls, video_id, video_title,
2852 getter=lambda x: smuggle_url(x, {'referrer': url}),
2853 ie='BrightcoveNew')
2854
2855 # Look for Nexx embeds
2856 nexx_urls = NexxIE._extract_urls(webpage)
2857 if nexx_urls:
2858 return self.playlist_from_matches(nexx_urls, video_id, video_title, ie=NexxIE.ie_key())
2859
2860 # Look for Nexx iFrame embeds
2861 nexx_embed_urls = NexxEmbedIE._extract_urls(webpage)
2862 if nexx_embed_urls:
2863 return self.playlist_from_matches(nexx_embed_urls, video_id, video_title, ie=NexxEmbedIE.ie_key())
2864
2865 # Look for ThePlatform embeds
2866 tp_urls = ThePlatformIE._extract_urls(webpage)
2867 if tp_urls:
2868 return self.playlist_from_matches(tp_urls, video_id, video_title, ie='ThePlatform')
2869
2870 arc_urls = ArcPublishingIE._extract_urls(webpage)
2871 if arc_urls:
2872 return self.playlist_from_matches(arc_urls, video_id, video_title, ie=ArcPublishingIE.ie_key())
2873
2874 mychannels_urls = MedialaanIE._extract_urls(webpage)
2875 if mychannels_urls:
2876 return self.playlist_from_matches(
2877 mychannels_urls, video_id, video_title, ie=MedialaanIE.ie_key())
2878
2879 # Look for embedded rtl.nl player
2880 matches = re.findall(
2881 r'<iframe[^>]+?src="((?:https?:)?//(?:(?:www|static)\.)?rtl\.nl/(?:system/videoplayer/[^"]+(?:video_)?)?embed[^"]+)"',
2882 webpage)
2883 if matches:
2884 return self.playlist_from_matches(matches, video_id, video_title, ie='RtlNl')
2885
2886 vimeo_urls = VimeoIE._extract_urls(url, webpage)
2887 if vimeo_urls:
2888 return self.playlist_from_matches(vimeo_urls, video_id, video_title, ie=VimeoIE.ie_key())
2889
2890 vhx_url = VHXEmbedIE._extract_url(webpage)
2891 if vhx_url:
2892 return self.url_result(vhx_url, VHXEmbedIE.ie_key())
2893
2894 # Invidious Instances
2895 # https://github.com/yt-dlp/yt-dlp/issues/195
2896 # https://github.com/iv-org/invidious/pull/1730
2897 youtube_url = self._search_regex(
2898 r'<link rel="alternate" href="(https://www\.youtube\.com/watch\?v=[0-9A-Za-z_-]{11})"',
2899 webpage, 'youtube link', default=None)
2900 if youtube_url:
2901 return self.url_result(youtube_url, YoutubeIE.ie_key())
2902
2903 # Look for YouTube embeds
2904 youtube_urls = YoutubeIE._extract_urls(webpage)
2905 if youtube_urls:
2906 return self.playlist_from_matches(
2907 youtube_urls, video_id, video_title, ie=YoutubeIE.ie_key())
2908
2909 matches = DailymotionIE._extract_urls(webpage)
2910 if matches:
2911 return self.playlist_from_matches(matches, video_id, video_title)
2912
2913 # Look for embedded Dailymotion playlist player (#3822)
2914 m = re.search(
2915 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.[a-z]{2,3}/widget/jukebox\?.+?)\1', webpage)
2916 if m:
2917 playlists = re.findall(
2918 r'list\[\]=/playlist/([^/]+)/', unescapeHTML(m.group('url')))
2919 if playlists:
2920 return self.playlist_from_matches(
2921 playlists, video_id, video_title, lambda p: '//dailymotion.com/playlist/%s' % p)
2922
2923 # Look for DailyMail embeds
2924 dailymail_urls = DailyMailIE._extract_urls(webpage)
2925 if dailymail_urls:
2926 return self.playlist_from_matches(
2927 dailymail_urls, video_id, video_title, ie=DailyMailIE.ie_key())
2928
2929 # Look for Teachable embeds, must be before Wistia
2930 teachable_url = TeachableIE._extract_url(webpage, url)
2931 if teachable_url:
2932 return self.url_result(teachable_url)
2933
2934 # Look for embedded Wistia player
2935 wistia_urls = WistiaIE._extract_urls(webpage)
2936 if wistia_urls:
2937 playlist = self.playlist_from_matches(wistia_urls, video_id, video_title, ie=WistiaIE.ie_key())
2938 for entry in playlist['entries']:
2939 entry.update({
2940 '_type': 'url_transparent',
2941 'uploader': video_uploader,
2942 })
2943 return playlist
2944
2945 # Look for SVT player
2946 svt_url = SVTIE._extract_url(webpage)
2947 if svt_url:
2948 return self.url_result(svt_url, 'SVT')
2949
2950 # Look for Bandcamp pages with custom domain
2951 mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
2952 if mobj is not None:
2953 burl = unescapeHTML(mobj.group(1))
2954 # Don't set the extractor because it can be a track url or an album
2955 return self.url_result(burl)
2956
2957 # Look for embedded Vevo player
2958 mobj = re.search(
2959 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
2960 if mobj is not None:
2961 return self.url_result(mobj.group('url'))
2962
2963 # Look for embedded Viddler player
2964 mobj = re.search(
2965 r'<(?:iframe[^>]+?src|param[^>]+?value)=(["\'])(?P<url>(?:https?:)?//(?:www\.)?viddler\.com/(?:embed|player)/.+?)\1',
2966 webpage)
2967 if mobj is not None:
2968 return self.url_result(mobj.group('url'))
2969
2970 # Look for NYTimes player
2971 mobj = re.search(
2972 r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//graphics8\.nytimes\.com/bcvideo/[^/]+/iframe/embed\.html.+?)\1>',
2973 webpage)
2974 if mobj is not None:
2975 return self.url_result(mobj.group('url'))
2976
2977 # Look for Libsyn player
2978 mobj = re.search(
2979 r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//html5-player\.libsyn\.com/embed/.+?)\1', webpage)
2980 if mobj is not None:
2981 return self.url_result(mobj.group('url'))
2982
2983 # Look for Ooyala videos
2984 mobj = (re.search(r'player\.ooyala\.com/[^"?]+[?#][^"]*?(?:embedCode|ec)=(?P<ec>[^"&]+)', webpage)
2985 or re.search(r'OO\.Player\.create\([\'"].*?[\'"],\s*[\'"](?P<ec>.{32})[\'"]', webpage)
2986 or re.search(r'OO\.Player\.create\.apply\(\s*OO\.Player\s*,\s*op\(\s*\[\s*[\'"][^\'"]*[\'"]\s*,\s*[\'"](?P<ec>.{32})[\'"]', webpage)
2987 or re.search(r'SBN\.VideoLinkset\.ooyala\([\'"](?P<ec>.{32})[\'"]\)', webpage)
2988 or re.search(r'data-ooyala-video-id\s*=\s*[\'"](?P<ec>.{32})[\'"]', webpage))
2989 if mobj is not None:
2990 embed_token = self._search_regex(
2991 r'embedToken[\'"]?\s*:\s*[\'"]([^\'"]+)',
2992 webpage, 'ooyala embed token', default=None)
2993 return OoyalaIE._build_url_result(smuggle_url(
2994 mobj.group('ec'), {
2995 'domain': url,
2996 'embed_token': embed_token,
2997 }))
2998
2999 # Look for multiple Ooyala embeds on SBN network websites
3000 mobj = re.search(r'SBN\.VideoLinkset\.entryGroup\((\[.*?\])', webpage)
3001 if mobj is not None:
3002 embeds = self._parse_json(mobj.group(1), video_id, fatal=False)
3003 if embeds:
3004 return self.playlist_from_matches(
3005 embeds, video_id, video_title,
3006 getter=lambda v: OoyalaIE._url_for_embed_code(smuggle_url(v['provider_video_id'], {'domain': url})), ie='Ooyala')
3007
3008 # Look for Aparat videos
3009 mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
3010 if mobj is not None:
3011 return self.url_result(mobj.group(1), 'Aparat')
3012
3013 # Look for MPORA videos
3014 mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
3015 if mobj is not None:
3016 return self.url_result(mobj.group(1), 'Mpora')
3017
3018 # Look for embedded Facebook player
3019 facebook_urls = FacebookIE._extract_urls(webpage)
3020 if facebook_urls:
3021 return self.playlist_from_matches(facebook_urls, video_id, video_title)
3022
3023 # Look for embedded VK player
3024 mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
3025 if mobj is not None:
3026 return self.url_result(mobj.group('url'), 'VK')
3027
3028 # Look for embedded Odnoklassniki player
3029 odnoklassniki_url = OdnoklassnikiIE._extract_url(webpage)
3030 if odnoklassniki_url:
3031 return self.url_result(odnoklassniki_url, OdnoklassnikiIE.ie_key())
3032
3033 # Look for sibnet embedded player
3034 sibnet_urls = VKIE._extract_sibnet_urls(webpage)
3035 if sibnet_urls:
3036 return self.playlist_from_matches(sibnet_urls, video_id, video_title)
3037
3038 # Look for embedded ivi player
3039 mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage)
3040 if mobj is not None:
3041 return self.url_result(mobj.group('url'), 'Ivi')
3042
3043 # Look for embedded Huffington Post player
3044 mobj = re.search(
3045 r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
3046 if mobj is not None:
3047 return self.url_result(mobj.group('url'), 'HuffPost')
3048
3049 # Look for embed.ly
3050 mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
3051 if mobj is not None:
3052 return self.url_result(mobj.group('url'))
3053 mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
3054 if mobj is not None:
3055 return self.url_result(compat_urllib_parse_unquote(mobj.group('url')))
3056
3057 # Look for funnyordie embed
3058 matches = re.findall(r'<iframe[^>]+?src="(https?://(?:www\.)?funnyordie\.com/embed/[^"]+)"', webpage)
3059 if matches:
3060 return self.playlist_from_matches(
3061 matches, video_id, video_title, getter=unescapeHTML, ie='FunnyOrDie')
3062
3063 # Look for Simplecast embeds
3064 simplecast_urls = SimplecastIE._extract_urls(webpage)
3065 if simplecast_urls:
3066 return self.playlist_from_matches(
3067 simplecast_urls, video_id, video_title)
3068
3069 # Look for BBC iPlayer embed
3070 matches = re.findall(r'setPlaylist\("(https?://www\.bbc\.co\.uk/iplayer/[^/]+/[\da-z]{8})"\)', webpage)
3071 if matches:
3072 return self.playlist_from_matches(matches, video_id, video_title, ie='BBCCoUk')
3073
3074 # Look for embedded RUTV player
3075 rutv_url = RUTVIE._extract_url(webpage)
3076 if rutv_url:
3077 return self.url_result(rutv_url, 'RUTV')
3078
3079 # Look for embedded TVC player
3080 tvc_url = TVCIE._extract_url(webpage)
3081 if tvc_url:
3082 return self.url_result(tvc_url, 'TVC')
3083
3084 # Look for embedded SportBox player
3085 sportbox_urls = SportBoxIE._extract_urls(webpage)
3086 if sportbox_urls:
3087 return self.playlist_from_matches(sportbox_urls, video_id, video_title, ie=SportBoxIE.ie_key())
3088
3089 # Look for embedded XHamster player
3090 xhamster_urls = XHamsterEmbedIE._extract_urls(webpage)
3091 if xhamster_urls:
3092 return self.playlist_from_matches(xhamster_urls, video_id, video_title, ie='XHamsterEmbed')
3093
3094 # Look for embedded TNAFlixNetwork player
3095 tnaflix_urls = TNAFlixNetworkEmbedIE._extract_urls(webpage)
3096 if tnaflix_urls:
3097 return self.playlist_from_matches(tnaflix_urls, video_id, video_title, ie=TNAFlixNetworkEmbedIE.ie_key())
3098
3099 # Look for embedded PornHub player
3100 pornhub_urls = PornHubIE._extract_urls(webpage)
3101 if pornhub_urls:
3102 return self.playlist_from_matches(pornhub_urls, video_id, video_title, ie=PornHubIE.ie_key())
3103
3104 # Look for embedded DrTuber player
3105 drtuber_urls = DrTuberIE._extract_urls(webpage)
3106 if drtuber_urls:
3107 return self.playlist_from_matches(drtuber_urls, video_id, video_title, ie=DrTuberIE.ie_key())
3108
3109 # Look for embedded RedTube player
3110 redtube_urls = RedTubeIE._extract_urls(webpage)
3111 if redtube_urls:
3112 return self.playlist_from_matches(redtube_urls, video_id, video_title, ie=RedTubeIE.ie_key())
3113
3114 # Look for embedded Tube8 player
3115 tube8_urls = Tube8IE._extract_urls(webpage)
3116 if tube8_urls:
3117 return self.playlist_from_matches(tube8_urls, video_id, video_title, ie=Tube8IE.ie_key())
3118
3119 # Look for embedded Mofosex player
3120 mofosex_urls = MofosexEmbedIE._extract_urls(webpage)
3121 if mofosex_urls:
3122 return self.playlist_from_matches(mofosex_urls, video_id, video_title, ie=MofosexEmbedIE.ie_key())
3123
3124 # Look for embedded Spankwire player
3125 spankwire_urls = SpankwireIE._extract_urls(webpage)
3126 if spankwire_urls:
3127 return self.playlist_from_matches(spankwire_urls, video_id, video_title, ie=SpankwireIE.ie_key())
3128
3129 # Look for embedded YouPorn player
3130 youporn_urls = YouPornIE._extract_urls(webpage)
3131 if youporn_urls:
3132 return self.playlist_from_matches(youporn_urls, video_id, video_title, ie=YouPornIE.ie_key())
3133
3134 # Look for embedded Tvigle player
3135 mobj = re.search(
3136 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//cloud\.tvigle\.ru/video/.+?)\1', webpage)
3137 if mobj is not None:
3138 return self.url_result(mobj.group('url'), 'Tvigle')
3139
3140 # Look for embedded TED player
3141 mobj = re.search(
3142 r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed(?:-ssl)?\.ted\.com/.+?)\1', webpage)
3143 if mobj is not None:
3144 return self.url_result(mobj.group('url'), 'TED')
3145
3146 # Look for embedded Ustream videos
3147 ustream_url = UstreamIE._extract_url(webpage)
3148 if ustream_url:
3149 return self.url_result(ustream_url, UstreamIE.ie_key())
3150
3151 # Look for embedded arte.tv player
3152 arte_urls = ArteTVEmbedIE._extract_urls(webpage)
3153 if arte_urls:
3154 return self.playlist_from_matches(arte_urls, video_id, video_title)
3155
3156 # Look for embedded francetv player
3157 mobj = re.search(
3158 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?://)?embed\.francetv\.fr/\?ue=.+?)\1',
3159 webpage)
3160 if mobj is not None:
3161 return self.url_result(mobj.group('url'))
3162
3163 # Look for embedded Myvi.ru player
3164 myvi_url = MyviIE._extract_url(webpage)
3165 if myvi_url:
3166 return self.url_result(myvi_url)
3167
3168 # Look for embedded soundcloud player
3169 soundcloud_urls = SoundcloudEmbedIE._extract_urls(webpage)
3170 if soundcloud_urls:
3171 return self.playlist_from_matches(soundcloud_urls, video_id, video_title, getter=unescapeHTML)
3172
3173 # Look for tunein player
3174 tunein_urls = TuneInBaseIE._extract_urls(webpage)
3175 if tunein_urls:
3176 return self.playlist_from_matches(tunein_urls, video_id, video_title)
3177
3178 # Look for embedded mtvservices player
3179 mtvservices_url = MTVServicesEmbeddedIE._extract_url(webpage)
3180 if mtvservices_url:
3181 return self.url_result(mtvservices_url, ie='MTVServicesEmbedded')
3182
3183 # Look for embedded yahoo player
3184 mobj = re.search(
3185 r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1',
3186 webpage)
3187 if mobj is not None:
3188 return self.url_result(mobj.group('url'), 'Yahoo')
3189
3190 # Look for embedded sbs.com.au player
3191 mobj = re.search(
3192 r'''(?x)
3193 (?:
3194 <meta\s+property="og:video"\s+content=|
3195 <iframe[^>]+?src=
3196 )
3197 (["\'])(?P<url>https?://(?:www\.)?sbs\.com\.au/ondemand/video/.+?)\1''',
3198 webpage)
3199 if mobj is not None:
3200 return self.url_result(mobj.group('url'), 'SBS')
3201
3202 # Look for embedded Cinchcast player
3203 mobj = re.search(
3204 r'<iframe[^>]+?src=(["\'])(?P<url>https?://player\.cinchcast\.com/.+?)\1',
3205 webpage)
3206 if mobj is not None:
3207 return self.url_result(mobj.group('url'), 'Cinchcast')
3208
3209 mobj = re.search(
3210 r'<iframe[^>]+?src=(["\'])(?P<url>https?://m(?:lb)?\.mlb\.com/shared/video/embed/embed\.html\?.+?)\1',
3211 webpage)
3212 if not mobj:
3213 mobj = re.search(
3214 r'data-video-link=["\'](?P<url>http://m\.mlb\.com/video/[^"\']+)',
3215 webpage)
3216 if mobj is not None:
3217 return self.url_result(mobj.group('url'), 'MLB')
3218
3219 mobj = re.search(
3220 r'<(?:iframe|script)[^>]+?src=(["\'])(?P<url>%s)\1' % CondeNastIE.EMBED_URL,
3221 webpage)
3222 if mobj is not None:
3223 return self.url_result(self._proto_relative_url(mobj.group('url'), scheme='http:'), 'CondeNast')
3224
3225 mobj = re.search(
3226 r'<iframe[^>]+src="(?P<url>https?://(?:new\.)?livestream\.com/[^"]+/player[^"]+)"',
3227 webpage)
3228 if mobj is not None:
3229 return self.url_result(mobj.group('url'), 'Livestream')
3230
3231 # Look for Zapiks embed
3232 mobj = re.search(
3233 r'<iframe[^>]+src="(?P<url>https?://(?:www\.)?zapiks\.fr/index\.php\?.+?)"', webpage)
3234 if mobj is not None:
3235 return self.url_result(mobj.group('url'), 'Zapiks')
3236
3237 # Look for Kaltura embeds
3238 kaltura_urls = KalturaIE._extract_urls(webpage)
3239 if kaltura_urls:
3240 return self.playlist_from_matches(
3241 kaltura_urls, video_id, video_title,
3242 getter=lambda x: smuggle_url(x, {'source_url': url}),
3243 ie=KalturaIE.ie_key())
3244
3245 # Look for EaglePlatform embeds
3246 eagleplatform_url = EaglePlatformIE._extract_url(webpage)
3247 if eagleplatform_url:
3248 return self.url_result(smuggle_url(eagleplatform_url, {'referrer': url}), EaglePlatformIE.ie_key())
3249
3250 # Look for ClipYou (uses EaglePlatform) embeds
3251 mobj = re.search(
3252 r'<iframe[^>]+src="https?://(?P<host>media\.clipyou\.ru)/index/player\?.*\brecord_id=(?P<id>\d+).*"', webpage)
3253 if mobj is not None:
3254 return self.url_result('eagleplatform:%(host)s:%(id)s' % mobj.groupdict(), 'EaglePlatform')
3255
3256 # Look for Pladform embeds
3257 pladform_url = PladformIE._extract_url(webpage)
3258 if pladform_url:
3259 return self.url_result(pladform_url)
3260
3261 # Look for Videomore embeds
3262 videomore_url = VideomoreIE._extract_url(webpage)
3263 if videomore_url:
3264 return self.url_result(videomore_url)
3265
3266 # Look for Webcaster embeds
3267 webcaster_url = WebcasterFeedIE._extract_url(self, webpage)
3268 if webcaster_url:
3269 return self.url_result(webcaster_url, ie=WebcasterFeedIE.ie_key())
3270
3271 # Look for Playwire embeds
3272 mobj = re.search(
3273 r'<script[^>]+data-config=(["\'])(?P<url>(?:https?:)?//config\.playwire\.com/.+?)\1', webpage)
3274 if mobj is not None:
3275 return self.url_result(mobj.group('url'))
3276
3277 # Look for 5min embeds
3278 mobj = re.search(
3279 r'<meta[^>]+property="og:video"[^>]+content="https?://embed\.5min\.com/(?P<id>[0-9]+)/?', webpage)
3280 if mobj is not None:
3281 return self.url_result('5min:%s' % mobj.group('id'), 'FiveMin')
3282
3283 # Look for Crooks and Liars embeds
3284 mobj = re.search(
3285 r'<(?:iframe[^>]+src|param[^>]+value)=(["\'])(?P<url>(?:https?:)?//embed\.crooksandliars\.com/(?:embed|v)/.+?)\1', webpage)
3286 if mobj is not None:
3287 return self.url_result(mobj.group('url'))
3288
3289 # Look for NBC Sports VPlayer embeds
3290 nbc_sports_url = NBCSportsVPlayerIE._extract_url(webpage)
3291 if nbc_sports_url:
3292 return self.url_result(nbc_sports_url, 'NBCSportsVPlayer')
3293
3294 # Look for NBC News embeds
3295 nbc_news_embed_url = re.search(
3296 r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//www\.nbcnews\.com/widget/video-embed/[^"\']+)\1', webpage)
3297 if nbc_news_embed_url:
3298 return self.url_result(nbc_news_embed_url.group('url'), 'NBCNews')
3299
3300 # Look for Google Drive embeds
3301 google_drive_url = GoogleDriveIE._extract_url(webpage)
3302 if google_drive_url:
3303 return self.url_result(google_drive_url, 'GoogleDrive')
3304
3305 # Look for UDN embeds
3306 mobj = re.search(
3307 r'<iframe[^>]+src="(?:https?:)?(?P<url>%s)"' % UDNEmbedIE._PROTOCOL_RELATIVE_VALID_URL, webpage)
3308 if mobj is not None:
3309 return self.url_result(
3310 compat_urlparse.urljoin(url, mobj.group('url')), 'UDNEmbed')
3311
3312 # Look for Senate ISVP iframe
3313 senate_isvp_url = SenateISVPIE._search_iframe_url(webpage)
3314 if senate_isvp_url:
3315 return self.url_result(senate_isvp_url, 'SenateISVP')
3316
3317 # Look for Kinja embeds
3318 kinja_embed_urls = KinjaEmbedIE._extract_urls(webpage, url)
3319 if kinja_embed_urls:
3320 return self.playlist_from_matches(
3321 kinja_embed_urls, video_id, video_title)
3322
3323 # Look for OnionStudios embeds
3324 onionstudios_url = OnionStudiosIE._extract_url(webpage)
3325 if onionstudios_url:
3326 return self.url_result(onionstudios_url)
3327
3328 # Look for Blogger embeds
3329 blogger_urls = BloggerIE._extract_urls(webpage)
3330 if blogger_urls:
3331 return self.playlist_from_matches(blogger_urls, video_id, video_title, ie=BloggerIE.ie_key())
3332
3333 # Look for ViewLift embeds
3334 viewlift_url = ViewLiftEmbedIE._extract_url(webpage)
3335 if viewlift_url:
3336 return self.url_result(viewlift_url)
3337
3338 # Look for JWPlatform embeds
3339 jwplatform_urls = JWPlatformIE._extract_urls(webpage)
3340 if jwplatform_urls:
3341 return self.playlist_from_matches(jwplatform_urls, video_id, video_title, ie=JWPlatformIE.ie_key())
3342
3343 # Look for Digiteka embeds
3344 digiteka_url = DigitekaIE._extract_url(webpage)
3345 if digiteka_url:
3346 return self.url_result(self._proto_relative_url(digiteka_url), DigitekaIE.ie_key())
3347
3348 # Look for Arkena embeds
3349 arkena_url = ArkenaIE._extract_url(webpage)
3350 if arkena_url:
3351 return self.url_result(arkena_url, ArkenaIE.ie_key())
3352
3353 # Look for Piksel embeds
3354 piksel_url = PikselIE._extract_url(webpage)
3355 if piksel_url:
3356 return self.url_result(piksel_url, PikselIE.ie_key())
3357
3358 # Look for Limelight embeds
3359 limelight_urls = LimelightBaseIE._extract_urls(webpage, url)
3360 if limelight_urls:
3361 return self.playlist_result(
3362 limelight_urls, video_id, video_title, video_description)
3363
3364 # Look for Anvato embeds
3365 anvato_urls = AnvatoIE._extract_urls(self, webpage, video_id)
3366 if anvato_urls:
3367 return self.playlist_result(
3368 anvato_urls, video_id, video_title, video_description)
3369
3370 # Look for AdobeTVVideo embeds
3371 mobj = re.search(
3372 r'<iframe[^>]+src=[\'"]((?:https?:)?//video\.tv\.adobe\.com/v/\d+[^"]+)[\'"]',
3373 webpage)
3374 if mobj is not None:
3375 return self.url_result(
3376 self._proto_relative_url(unescapeHTML(mobj.group(1))),
3377 'AdobeTVVideo')
3378
3379 # Look for Vine embeds
3380 mobj = re.search(
3381 r'<iframe[^>]+src=[\'"]((?:https?:)?//(?:www\.)?vine\.co/v/[^/]+/embed/(?:simple|postcard))',
3382 webpage)
3383 if mobj is not None:
3384 return self.url_result(
3385 self._proto_relative_url(unescapeHTML(mobj.group(1))), 'Vine')
3386
3387 # Look for VODPlatform embeds
3388 mobj = re.search(
3389 r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//(?:(?:www\.)?vod-platform\.net|embed\.kwikmotion\.com)/[eE]mbed/.+?)\1',
3390 webpage)
3391 if mobj is not None:
3392 return self.url_result(
3393 self._proto_relative_url(unescapeHTML(mobj.group('url'))), 'VODPlatform')
3394
3395 # Look for Mangomolo embeds
3396 mobj = re.search(
3397 r'''(?x)<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//
3398 (?:
3399 admin\.mangomolo\.com/analytics/index\.php/customers/embed|
3400 player\.mangomolo\.com/v1
3401 )/
3402 (?:
3403 video\?.*?\bid=(?P<video_id>\d+)|
3404 (?:index|live)\?.*?\bchannelid=(?P<channel_id>(?:[A-Za-z0-9+/=]|%2B|%2F|%3D)+)
3405 ).+?)\1''', webpage)
3406 if mobj is not None:
3407 info = {
3408 '_type': 'url_transparent',
3409 'url': self._proto_relative_url(unescapeHTML(mobj.group('url'))),
3410 'title': video_title,
3411 'description': video_description,
3412 'thumbnail': video_thumbnail,
3413 'uploader': video_uploader,
3414 }
3415 video_id = mobj.group('video_id')
3416 if video_id:
3417 info.update({
3418 'ie_key': 'MangomoloVideo',
3419 'id': video_id,
3420 })
3421 else:
3422 info.update({
3423 'ie_key': 'MangomoloLive',
3424 'id': mobj.group('channel_id'),
3425 })
3426 return info
3427
3428 # Look for Instagram embeds
3429 instagram_embed_url = InstagramIE._extract_embed_url(webpage)
3430 if instagram_embed_url is not None:
3431 return self.url_result(
3432 self._proto_relative_url(instagram_embed_url), InstagramIE.ie_key())
3433
3434 # Look for 3Q SDN embeds
3435 threeqsdn_url = ThreeQSDNIE._extract_url(webpage)
3436 if threeqsdn_url:
3437 return {
3438 '_type': 'url_transparent',
3439 'ie_key': ThreeQSDNIE.ie_key(),
3440 'url': self._proto_relative_url(threeqsdn_url),
3441 'title': video_title,
3442 'description': video_description,
3443 'thumbnail': video_thumbnail,
3444 'uploader': video_uploader,
3445 }
3446
3447 # Look for VBOX7 embeds
3448 vbox7_url = Vbox7IE._extract_url(webpage)
3449 if vbox7_url:
3450 return self.url_result(vbox7_url, Vbox7IE.ie_key())
3451
3452 # Look for DBTV embeds
3453 dbtv_urls = DBTVIE._extract_urls(webpage)
3454 if dbtv_urls:
3455 return self.playlist_from_matches(dbtv_urls, video_id, video_title, ie=DBTVIE.ie_key())
3456
3457 # Look for Videa embeds
3458 videa_urls = VideaIE._extract_urls(webpage)
3459 if videa_urls:
3460 return self.playlist_from_matches(videa_urls, video_id, video_title, ie=VideaIE.ie_key())
3461
3462 # Look for 20 minuten embeds
3463 twentymin_urls = TwentyMinutenIE._extract_urls(webpage)
3464 if twentymin_urls:
3465 return self.playlist_from_matches(
3466 twentymin_urls, video_id, video_title, ie=TwentyMinutenIE.ie_key())
3467
3468 # Look for VideoPress embeds
3469 videopress_urls = VideoPressIE._extract_urls(webpage)
3470 if videopress_urls:
3471 return self.playlist_from_matches(
3472 videopress_urls, video_id, video_title, ie=VideoPressIE.ie_key())
3473
3474 # Look for Rutube embeds
3475 rutube_urls = RutubeIE._extract_urls(webpage)
3476 if rutube_urls:
3477 return self.playlist_from_matches(
3478 rutube_urls, video_id, video_title, ie=RutubeIE.ie_key())
3479
3480 # Look for Glomex embeds
3481 glomex_urls = list(GlomexEmbedIE._extract_urls(webpage, url))
3482 if glomex_urls:
3483 return self.playlist_from_matches(
3484 glomex_urls, video_id, video_title, ie=GlomexEmbedIE.ie_key())
3485
3486 # Look for WashingtonPost embeds
3487 wapo_urls = WashingtonPostIE._extract_urls(webpage)
3488 if wapo_urls:
3489 return self.playlist_from_matches(
3490 wapo_urls, video_id, video_title, ie=WashingtonPostIE.ie_key())
3491
3492 # Look for Mediaset embeds
3493 mediaset_urls = MediasetIE._extract_urls(self, webpage)
3494 if mediaset_urls:
3495 return self.playlist_from_matches(
3496 mediaset_urls, video_id, video_title, ie=MediasetIE.ie_key())
3497
3498 # Look for JOJ.sk embeds
3499 joj_urls = JojIE._extract_urls(webpage)
3500 if joj_urls:
3501 return self.playlist_from_matches(
3502 joj_urls, video_id, video_title, ie=JojIE.ie_key())
3503
3504 # Look for megaphone.fm embeds
3505 mpfn_urls = MegaphoneIE._extract_urls(webpage)
3506 if mpfn_urls:
3507 return self.playlist_from_matches(
3508 mpfn_urls, video_id, video_title, ie=MegaphoneIE.ie_key())
3509
3510 # Look for vzaar embeds
3511 vzaar_urls = VzaarIE._extract_urls(webpage)
3512 if vzaar_urls:
3513 return self.playlist_from_matches(
3514 vzaar_urls, video_id, video_title, ie=VzaarIE.ie_key())
3515
3516 channel9_urls = Channel9IE._extract_urls(webpage)
3517 if channel9_urls:
3518 return self.playlist_from_matches(
3519 channel9_urls, video_id, video_title, ie=Channel9IE.ie_key())
3520
3521 vshare_urls = VShareIE._extract_urls(webpage)
3522 if vshare_urls:
3523 return self.playlist_from_matches(
3524 vshare_urls, video_id, video_title, ie=VShareIE.ie_key())
3525
3526 # Look for Mediasite embeds
3527 mediasite_urls = MediasiteIE._extract_urls(webpage)
3528 if mediasite_urls:
3529 entries = [
3530 self.url_result(smuggle_url(
3531 compat_urlparse.urljoin(url, mediasite_url),
3532 {'UrlReferrer': url}), ie=MediasiteIE.ie_key())
3533 for mediasite_url in mediasite_urls]
3534 return self.playlist_result(entries, video_id, video_title)
3535
3536 springboardplatform_urls = SpringboardPlatformIE._extract_urls(webpage)
3537 if springboardplatform_urls:
3538 return self.playlist_from_matches(
3539 springboardplatform_urls, video_id, video_title,
3540 ie=SpringboardPlatformIE.ie_key())
3541
3542 yapfiles_urls = YapFilesIE._extract_urls(webpage)
3543 if yapfiles_urls:
3544 return self.playlist_from_matches(
3545 yapfiles_urls, video_id, video_title, ie=YapFilesIE.ie_key())
3546
3547 vice_urls = ViceIE._extract_urls(webpage)
3548 if vice_urls:
3549 return self.playlist_from_matches(
3550 vice_urls, video_id, video_title, ie=ViceIE.ie_key())
3551
3552 xfileshare_urls = XFileShareIE._extract_urls(webpage)
3553 if xfileshare_urls:
3554 return self.playlist_from_matches(
3555 xfileshare_urls, video_id, video_title, ie=XFileShareIE.ie_key())
3556
3557 cloudflarestream_urls = CloudflareStreamIE._extract_urls(webpage)
3558 if cloudflarestream_urls:
3559 return self.playlist_from_matches(
3560 cloudflarestream_urls, video_id, video_title, ie=CloudflareStreamIE.ie_key())
3561
3562 peertube_urls = PeerTubeIE._extract_urls(webpage, url)
3563 if peertube_urls:
3564 return self.playlist_from_matches(
3565 peertube_urls, video_id, video_title, ie=PeerTubeIE.ie_key())
3566
3567 indavideo_urls = IndavideoEmbedIE._extract_urls(webpage)
3568 if indavideo_urls:
3569 return self.playlist_from_matches(
3570 indavideo_urls, video_id, video_title, ie=IndavideoEmbedIE.ie_key())
3571
3572 apa_urls = APAIE._extract_urls(webpage)
3573 if apa_urls:
3574 return self.playlist_from_matches(
3575 apa_urls, video_id, video_title, ie=APAIE.ie_key())
3576
3577 foxnews_urls = FoxNewsIE._extract_urls(webpage)
3578 if foxnews_urls:
3579 return self.playlist_from_matches(
3580 foxnews_urls, video_id, video_title, ie=FoxNewsIE.ie_key())
3581
3582 sharevideos_urls = [sharevideos_mobj.group('url') for sharevideos_mobj in re.finditer(
3583 r'<iframe[^>]+?\bsrc\s*=\s*(["\'])(?P<url>(?:https?:)?//embed\.share-videos\.se/auto/embed/\d+\?.*?\buid=\d+.*?)\1',
3584 webpage)]
3585 if sharevideos_urls:
3586 return self.playlist_from_matches(
3587 sharevideos_urls, video_id, video_title)
3588
3589 viqeo_urls = ViqeoIE._extract_urls(webpage)
3590 if viqeo_urls:
3591 return self.playlist_from_matches(
3592 viqeo_urls, video_id, video_title, ie=ViqeoIE.ie_key())
3593
3594 expressen_urls = ExpressenIE._extract_urls(webpage)
3595 if expressen_urls:
3596 return self.playlist_from_matches(
3597 expressen_urls, video_id, video_title, ie=ExpressenIE.ie_key())
3598
3599 zype_urls = ZypeIE._extract_urls(webpage)
3600 if zype_urls:
3601 return self.playlist_from_matches(
3602 zype_urls, video_id, video_title, ie=ZypeIE.ie_key())
3603
3604 gedi_urls = GediDigitalIE._extract_urls(webpage)
3605 if gedi_urls:
3606 return self.playlist_from_matches(
3607 gedi_urls, video_id, video_title, ie=GediDigitalIE.ie_key())
3608
3609 # Look for RCS media group embeds
3610 rcs_urls = RCSEmbedsIE._extract_urls(webpage)
3611 if rcs_urls:
3612 return self.playlist_from_matches(
3613 rcs_urls, video_id, video_title, ie=RCSEmbedsIE.ie_key())
3614
3615 wimtv_urls = WimTVIE._extract_urls(webpage)
3616 if wimtv_urls:
3617 return self.playlist_from_matches(
3618 wimtv_urls, video_id, video_title, ie=WimTVIE.ie_key())
3619
3620 bitchute_urls = BitChuteIE._extract_urls(webpage)
3621 if bitchute_urls:
3622 return self.playlist_from_matches(
3623 bitchute_urls, video_id, video_title, ie=BitChuteIE.ie_key())
3624
3625 rumble_urls = RumbleEmbedIE._extract_urls(webpage)
3626 if len(rumble_urls) == 1:
3627 return self.url_result(rumble_urls[0], RumbleEmbedIE.ie_key())
3628 if rumble_urls:
3629 return self.playlist_from_matches(
3630 rumble_urls, video_id, video_title, ie=RumbleEmbedIE.ie_key())
3631
3632 tvp_urls = TVPEmbedIE._extract_urls(webpage)
3633 if tvp_urls:
3634 return self.playlist_from_matches(tvp_urls, video_id, video_title, ie=TVPEmbedIE.ie_key())
3635
3636 # Look for MainStreaming embeds
3637 mainstreaming_urls = MainStreamingIE._extract_urls(webpage)
3638 if mainstreaming_urls:
3639 return self.playlist_from_matches(mainstreaming_urls, video_id, video_title, ie=MainStreamingIE.ie_key())
3640
3641 # Look for Gfycat Embeds
3642 gfycat_urls = GfycatIE._extract_urls(webpage)
3643 if gfycat_urls:
3644 return self.playlist_from_matches(gfycat_urls, video_id, video_title, ie=GfycatIE.ie_key())
3645
3646 # Look for HTML5 media
3647 entries = self._parse_html5_media_entries(url, webpage, video_id, m3u8_id='hls')
3648 if entries:
3649 self.report_detected('HTML5 media')
3650 if len(entries) == 1:
3651 entries[0].update({
3652 'id': video_id,
3653 'title': video_title,
3654 })
3655 else:
3656 for num, entry in enumerate(entries, start=1):
3657 entry.update({
3658 'id': '%s-%s' % (video_id, num),
3659 'title': '%s (%d)' % (video_title, num),
3660 })
3661 for entry in entries:
3662 self._sort_formats(entry['formats'])
3663 return self.playlist_result(entries, video_id, video_title)
3664
3665 jwplayer_data = self._find_jwplayer_data(
3666 webpage, video_id, transform_source=js_to_json)
3667 if jwplayer_data:
3668 if isinstance(jwplayer_data.get('playlist'), str):
3669 self.report_detected('JW Player playlist')
3670 return {
3671 **info_dict,
3672 '_type': 'url',
3673 'ie_key': JWPlatformIE.ie_key(),
3674 'url': jwplayer_data['playlist'],
3675 }
3676 try:
3677 info = self._parse_jwplayer_data(
3678 jwplayer_data, video_id, require_title=False, base_url=url)
3679 self.report_detected('JW Player data')
3680 return merge_dicts(info, info_dict)
3681 except ExtractorError:
3682 # See https://github.com/ytdl-org/youtube-dl/pull/16735
3683 pass
3684
3685 # Video.js embed
3686 mobj = re.search(
3687 r'(?s)\bvideojs\s*\(.+?\.src\s*\(\s*((?:\[.+?\]|{.+?}))\s*\)\s*;',
3688 webpage)
3689 if mobj is not None:
3690 sources = self._parse_json(
3691 mobj.group(1), video_id, transform_source=js_to_json,
3692 fatal=False) or []
3693 if not isinstance(sources, list):
3694 sources = [sources]
3695 formats = []
3696 subtitles = {}
3697 for source in sources:
3698 src = source.get('src')
3699 if not src or not isinstance(src, compat_str):
3700 continue
3701 src = compat_urlparse.urljoin(url, src)
3702 src_type = source.get('type')
3703 if isinstance(src_type, compat_str):
3704 src_type = src_type.lower()
3705 ext = determine_ext(src).lower()
3706 if src_type == 'video/youtube':
3707 return self.url_result(src, YoutubeIE.ie_key())
3708 if src_type == 'application/dash+xml' or ext == 'mpd':
3709 fmts, subs = self._extract_mpd_formats_and_subtitles(
3710 src, video_id, mpd_id='dash', fatal=False)
3711 formats.extend(fmts)
3712 self._merge_subtitles(subs, target=subtitles)
3713 elif src_type == 'application/x-mpegurl' or ext == 'm3u8':
3714 fmts, subs = self._extract_m3u8_formats_and_subtitles(
3715 src, video_id, 'mp4', entry_protocol='m3u8_native',
3716 m3u8_id='hls', fatal=False)
3717 formats.extend(fmts)
3718 self._merge_subtitles(subs, target=subtitles)
3719 else:
3720 formats.append({
3721 'url': src,
3722 'ext': (mimetype2ext(src_type)
3723 or ext if ext in KNOWN_EXTENSIONS else 'mp4'),
3724 'http_headers': {
3725 'Referer': full_response.geturl(),
3726 },
3727 })
3728 if formats or subtitles:
3729 self.report_detected('video.js embed')
3730 self._sort_formats(formats)
3731 info_dict['formats'] = formats
3732 info_dict['subtitles'] = subtitles
3733 return info_dict
3734
3735 # Looking for http://schema.org/VideoObject
3736 json_ld = self._search_json_ld(webpage, video_id, default={})
3737 if json_ld.get('url'):
3738 self.report_detected('JSON LD')
3739 if determine_ext(json_ld.get('url')) == 'm3u8':
3740 json_ld['formats'], json_ld['subtitles'] = self._extract_m3u8_formats_and_subtitles(
3741 json_ld['url'], video_id, 'mp4')
3742 json_ld.pop('url')
3743 return merge_dicts(json_ld, info_dict)
3744
3745 def check_video(vurl):
3746 if YoutubeIE.suitable(vurl):
3747 return True
3748 if RtmpIE.suitable(vurl):
3749 return True
3750 vpath = compat_urlparse.urlparse(vurl).path
3751 vext = determine_ext(vpath)
3752 return '.' in vpath and vext not in ('swf', 'png', 'jpg', 'srt', 'sbv', 'sub', 'vtt', 'ttml', 'js', 'xml')
3753
3754 def filter_video(urls):
3755 return list(filter(check_video, urls))
3756
3757 # Start with something easy: JW Player in SWFObject
3758 found = filter_video(re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage))
3759 if found:
3760 self.report_detected('JW Player in SFWObject')
3761 else:
3762 # Look for gorilla-vid style embedding
3763 found = filter_video(re.findall(r'''(?sx)
3764 (?:
3765 jw_plugins|
3766 JWPlayerOptions|
3767 jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
3768 )
3769 .*?
3770 ['"]?file['"]?\s*:\s*["\'](.*?)["\']''', webpage))
3771 if found:
3772 self.report_detected('JW Player embed')
3773 if not found:
3774 # Look for generic KVS player
3775 found = re.search(r'<script [^>]*?src="https?://.+?/kt_player\.js\?v=(?P<ver>(?P<maj_ver>\d+)(\.\d+)+)".*?>', webpage)
3776 if found:
3777 self.report_detected('KWS Player')
3778 if found.group('maj_ver') not in ['4', '5']:
3779 self.report_warning('Untested major version (%s) in player engine--Download may fail.' % found.group('ver'))
3780 flashvars = re.search(r'(?ms)<script.*?>.*?var\s+flashvars\s*=\s*(\{.*?\});.*?</script>', webpage)
3781 flashvars = self._parse_json(flashvars.group(1), video_id, transform_source=js_to_json)
3782
3783 # extract the part after the last / as the display_id from the
3784 # canonical URL.
3785 display_id = self._search_regex(
3786 r'(?:<link href="https?://[^"]+/(.+?)/?" rel="canonical"\s*/?>'
3787 r'|<link rel="canonical" href="https?://[^"]+/(.+?)/?"\s*/?>)',
3788 webpage, 'display_id', fatal=False
3789 )
3790 title = self._html_search_regex(r'<(?:h1|title)>(?:Video: )?(.+?)</(?:h1|title)>', webpage, 'title')
3791
3792 thumbnail = flashvars['preview_url']
3793 if thumbnail.startswith('//'):
3794 protocol, _, _ = url.partition('/')
3795 thumbnail = protocol + thumbnail
3796
3797 url_keys = list(filter(re.compile(r'video_url|video_alt_url\d+').fullmatch, flashvars.keys()))
3798 formats = []
3799 for key in url_keys:
3800 if '/get_file/' not in flashvars[key]:
3801 continue
3802 format_id = flashvars.get(f'{key}_text', key)
3803 formats.append({
3804 'url': self._kvs_getrealurl(flashvars[key], flashvars['license_code']),
3805 'format_id': format_id,
3806 'ext': 'mp4',
3807 **(parse_resolution(format_id) or parse_resolution(flashvars[key]))
3808 })
3809 if not formats[-1].get('height'):
3810 formats[-1]['quality'] = 1
3811
3812 self._sort_formats(formats)
3813
3814 return {
3815 'id': flashvars['video_id'],
3816 'display_id': display_id,
3817 'title': title,
3818 'thumbnail': thumbnail,
3819 'formats': formats,
3820 }
3821 if not found:
3822 # Broaden the search a little bit
3823 found = filter_video(re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage))
3824 if found:
3825 self.report_detected('video file')
3826 if not found:
3827 # Broaden the findall a little bit: JWPlayer JS loader
3828 found = filter_video(re.findall(
3829 r'[^A-Za-z0-9]?(?:file|video_url)["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage))
3830 if found:
3831 self.report_detected('JW Player JS loader')
3832 if not found:
3833 # Flow player
3834 found = filter_video(re.findall(r'''(?xs)
3835 flowplayer\("[^"]+",\s*
3836 \{[^}]+?\}\s*,
3837 \s*\{[^}]+? ["']?clip["']?\s*:\s*\{\s*
3838 ["']?url["']?\s*:\s*["']([^"']+)["']
3839 ''', webpage))
3840 if found:
3841 self.report_detected('Flow Player')
3842 if not found:
3843 # Cinerama player
3844 found = re.findall(
3845 r"cinerama\.embedPlayer\(\s*\'[^']+\',\s*'([^']+)'", webpage)
3846 if found:
3847 self.report_detected('Cinerama player')
3848 if not found:
3849 # Try to find twitter cards info
3850 # twitter:player:stream should be checked before twitter:player since
3851 # it is expected to contain a raw stream (see
3852 # https://dev.twitter.com/cards/types/player#On_twitter.com_via_desktop_browser)
3853 found = filter_video(re.findall(
3854 r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage))
3855 if found:
3856 self.report_detected('Twitter card')
3857 if not found:
3858 # We look for Open Graph info:
3859 # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
3860 m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
3861 # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
3862 if m_video_type is not None:
3863 found = filter_video(re.findall(r'<meta.*?property="og:(?:video|audio)".*?content="(.*?)"', webpage))
3864 if found:
3865 self.report_detected('Open Graph video info')
3866 if not found:
3867 REDIRECT_REGEX = r'[0-9]{,2};\s*(?:URL|url)=\'?([^\'"]+)'
3868 found = re.search(
3869 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
3870 r'(?:[a-z-]+="[^"]+"\s+)*?content="%s' % REDIRECT_REGEX,
3871 webpage)
3872 if not found:
3873 # Look also in Refresh HTTP header
3874 refresh_header = head_response.headers.get('Refresh')
3875 if refresh_header:
3876 # In python 2 response HTTP headers are bytestrings
3877 if sys.version_info < (3, 0) and isinstance(refresh_header, str):
3878 refresh_header = refresh_header.decode('iso-8859-1')
3879 found = re.search(REDIRECT_REGEX, refresh_header)
3880 if found:
3881 new_url = compat_urlparse.urljoin(url, unescapeHTML(found.group(1)))
3882 if new_url != url:
3883 self.report_following_redirect(new_url)
3884 return {
3885 '_type': 'url',
3886 'url': new_url,
3887 }
3888 else:
3889 found = None
3890
3891 if not found:
3892 # twitter:player is a https URL to iframe player that may or may not
3893 # be supported by yt-dlp thus this is checked the very last (see
3894 # https://dev.twitter.com/cards/types/player#On_twitter.com_via_desktop_browser)
3895 embed_url = self._html_search_meta('twitter:player', webpage, default=None)
3896 if embed_url and embed_url != url:
3897 self.report_detected('twitter:player iframe')
3898 return self.url_result(embed_url)
3899
3900 if not found:
3901 raise UnsupportedError(url)
3902
3903 entries = []
3904 for video_url in orderedSet(found):
3905 video_url = unescapeHTML(video_url)
3906 video_url = video_url.replace('\\/', '/')
3907 video_url = compat_urlparse.urljoin(url, video_url)
3908 video_id = compat_urllib_parse_unquote(os.path.basename(video_url))
3909
3910 # Sometimes, jwplayer extraction will result in a YouTube URL
3911 if YoutubeIE.suitable(video_url):
3912 entries.append(self.url_result(video_url, 'Youtube'))
3913 continue
3914
3915 # here's a fun little line of code for you:
3916 video_id = os.path.splitext(video_id)[0]
3917
3918 entry_info_dict = {
3919 'id': video_id,
3920 'uploader': video_uploader,
3921 'title': video_title,
3922 'age_limit': age_limit,
3923 }
3924
3925 if RtmpIE.suitable(video_url):
3926 entry_info_dict.update({
3927 '_type': 'url_transparent',
3928 'ie_key': RtmpIE.ie_key(),
3929 'url': video_url,
3930 })
3931 entries.append(entry_info_dict)
3932 continue
3933
3934 ext = determine_ext(video_url)
3935 if ext == 'smil':
3936 entry_info_dict = {**self._extract_smil_info(video_url, video_id), **entry_info_dict}
3937 elif ext == 'xspf':
3938 return self.playlist_result(self._extract_xspf_playlist(video_url, video_id), video_id)
3939 elif ext == 'm3u8':
3940 entry_info_dict['formats'], entry_info_dict['subtitles'] = self._extract_m3u8_formats_and_subtitles(video_url, video_id, ext='mp4')
3941 elif ext == 'mpd':
3942 entry_info_dict['formats'], entry_info_dict['subtitles'] = self._extract_mpd_formats_and_subtitles(video_url, video_id)
3943 elif ext == 'f4m':
3944 entry_info_dict['formats'] = self._extract_f4m_formats(video_url, video_id)
3945 elif re.search(r'(?i)\.(?:ism|smil)/manifest', video_url) and video_url != url:
3946 # Just matching .ism/manifest is not enough to be reliably sure
3947 # whether it's actually an ISM manifest or some other streaming
3948 # manifest since there are various streaming URL formats
3949 # possible (see [1]) as well as some other shenanigans like
3950 # .smil/manifest URLs that actually serve an ISM (see [2]) and
3951 # so on.
3952 # Thus the most reasonable way to solve this is to delegate
3953 # to generic extractor in order to look into the contents of
3954 # the manifest itself.
3955 # 1. https://azure.microsoft.com/en-us/documentation/articles/media-services-deliver-content-overview/#streaming-url-formats
3956 # 2. https://svs.itworkscdn.net/lbcivod/smil:itwfcdn/lbci/170976.smil/Manifest
3957 entry_info_dict = self.url_result(
3958 smuggle_url(video_url, {'to_generic': True}),
3959 GenericIE.ie_key())
3960 else:
3961 entry_info_dict['url'] = video_url
3962
3963 if entry_info_dict.get('formats'):
3964 self._sort_formats(entry_info_dict['formats'])
3965
3966 entries.append(entry_info_dict)
3967
3968 if len(entries) == 1:
3969 return entries[0]
3970 else:
3971 for num, e in enumerate(entries, start=1):
3972 # 'url' results don't have a title
3973 if e.get('title') is not None:
3974 e['title'] = '%s (%d)' % (e['title'], num)
3975 return {
3976 '_type': 'playlist',
3977 'entries': entries,
3978 }