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