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