]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/generic.py
[extractors] Add imports for arkena and lcp
[yt-dlp.git] / youtube_dl / extractor / generic.py
CommitLineData
cfe50f04
JMF
1# encoding: utf-8
2
79649588
PH
3from __future__ import unicode_literals
4
9b122384
PH
5import os
6import re
6c91a5a7 7import sys
9b122384
PH
8
9from .common import InfoExtractor
fc9713a1 10from .youtube import YoutubeIE
8c25f81b 11from ..compat import (
f7854627 12 compat_etree_fromstring,
1ddb9456 13 compat_urllib_parse_unquote,
a5caba1e 14 compat_urlparse,
f7300c5c 15 compat_xml_parse_error,
8c25f81b
PH
16)
17from ..utils import (
b759a0d4 18 determine_ext,
9b122384 19 ExtractorError,
c8e9a235 20 float_or_none,
aa94a6d3 21 HEADRequest,
61ca9a80 22 is_html,
ed2d6a19 23 orderedSet,
5c2266df 24 sanitized_Request,
9d4660ca
PH
25 smuggle_url,
26 unescapeHTML,
42393ce2 27 unified_strdate,
4d54ef20 28 unsmuggle_url,
416c7fcb 29 UnsupportedError,
42393ce2 30 url_basename,
76c73715 31 xpath_text,
9b122384 32)
ed126900 33from .brightcove import (
4fcaa4f4 34 BrightcoveLegacyIE,
5c17f0a6 35 BrightcoveNewIE,
ed126900 36)
a2edf2e7 37from .nbc import NBCSportsVPlayerIE
c0d0b01f 38from .ooyala import OoyalaIE
93d020dd 39from .rutv import RUTVIE
954c1d05 40from .tvc import TVCIE
d40a3b5b 41from .sportbox import SportBoxEmbedIE
cb3ac1c6 42from .smotri import SmotriIE
6dd94d3a 43from .myvi import MyviIE
1419fafd 44from .condenast import CondeNastIE
418c5cc3 45from .udn import UDNEmbedIE
2fe1b5bd 46from .senateisvp import SenateISVPIE
bab19a8e 47from .svt import SVTIE
65d161c4 48from .pornhub import PornHubIE
2bb5b6d0 49from .xhamster import XHamsterEmbedIE
2c9ca782 50from .tnaflix import TNAFlixNetworkEmbedIE
b407e173 51from .vimeo import VimeoIE
ad213a1d
YCH
52from .dailymotion import (
53 DailymotionIE,
54 DailymotionCloudIE,
55)
1ac1c4c2 56from .onionstudios import OnionStudiosIE
67167920 57from .viewlift import ViewLiftEmbedIE
efd712c6 58from .screenwavemedia import ScreenwaveMediaIE
46fde8a1 59from .mtv import MTVServicesEmbeddedIE
45dad7ba 60from .pladform import PladformIE
ff18735c 61from .videomore import VideomoreIE
5b251628 62from .googledrive import GoogleDriveIE
7cb09524 63from .jwplatform import JWPlatformIE
aecfcd4e 64from .digiteka import DigitekaIE
5a51775a 65from .instagram import InstagramIE
b8f67449 66from .liveleak import LiveLeakIE
5d39176f 67from .threeqsdn import ThreeQSDNIE
4d8819d2 68from .theplatform import ThePlatformIE
48a5eabc 69from .vessel import VesselIE
c287f2bc 70from .kaltura import KalturaIE
06a96da1 71from .eagleplatform import EaglePlatformIE
fd6ca382 72from .facebook import FacebookIE
9b122384 73
0838239e 74
9b122384 75class GenericIE(InfoExtractor):
79649588 76 IE_DESC = 'Generic downloader that works on some sites'
9b122384 77 _VALID_URL = r'.*'
79649588 78 IE_NAME = 'generic'
cfe50f04 79 _TESTS = [
c5fa81fe
S
80 # Direct link to a video
81 {
82 'url': 'http://media.w3.org/2010/05/sintel/trailer.mp4',
83 'md5': '67d406c2bcb6af27fa886f31aa934bbe',
84 'info_dict': {
85 'id': 'trailer',
86 'ext': 'mp4',
87 'title': 'trailer',
88 'upload_date': '20100513',
89 }
90 },
c5138a7c 91 # Direct link to media delivered compressed (until Accept-Encoding is *)
c5fa81fe
S
92 {
93 'url': 'http://calimero.tk/muzik/FictionJunction-Parallel_Hearts.flac',
94 'md5': '128c42e68b13950268b648275386fc74',
95 'info_dict': {
96 'id': 'FictionJunction-Parallel_Hearts',
97 'ext': 'flac',
98 'title': 'FictionJunction-Parallel_Hearts',
99 'upload_date': '20140522',
100 },
101 'expected_warnings': [
102 'URL could be a direct video link, returning it as such.'
103 ]
104 },
105 # Direct download with broken HEAD
106 {
107 'url': 'http://ai-radio.org:8000/radio.opus',
108 'info_dict': {
109 'id': 'radio',
110 'ext': 'opus',
111 'title': 'radio',
112 },
113 'params': {
114 'skip_download': True, # infinite live stream
115 },
116 'expected_warnings': [
ef0e4e7b
YCH
117 r'501.*Not Implemented',
118 r'400.*Bad Request',
c5fa81fe
S
119 ],
120 },
121 # Direct link with incorrect MIME type
122 {
123 'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
124 'md5': '4ccbebe5f36706d85221f204d7eb5913',
125 'info_dict': {
126 'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
127 'id': '5_Lennart_Poettering_-_Systemd',
128 'ext': 'webm',
129 'title': '5_Lennart_Poettering_-_Systemd',
130 'upload_date': '20141120',
131 },
132 'expected_warnings': [
133 'URL could be a direct video link, returning it as such.'
134 ]
135 },
136 # RSS feed
137 {
138 'url': 'http://phihag.de/2014/youtube-dl/rss2.xml',
139 'info_dict': {
140 'id': 'http://phihag.de/2014/youtube-dl/rss2.xml',
141 'title': 'Zero Punctuation',
142 'description': 're:.*groundbreaking video review series.*'
143 },
144 'playlist_mincount': 11,
145 },
146 # RSS feed with enclosure
147 {
148 'url': 'http://podcastfeeds.nbcnews.com/audio/podcast/MSNBC-MADDOW-NETCAST-M4V.xml',
149 'info_dict': {
150 'id': 'pdv_maddow_netcast_m4v-02-27-2015-201624',
151 'ext': 'm4v',
152 'upload_date': '20150228',
153 'title': 'pdv_maddow_netcast_m4v-02-27-2015-201624',
154 }
155 },
8765222d
S
156 # SMIL from http://videolectures.net/promogram_igor_mekjavic_eng
157 {
158 'url': 'http://videolectures.net/promogram_igor_mekjavic_eng/video/1/smil.xml',
159 'info_dict': {
160 'id': 'smil',
161 'ext': 'mp4',
162 'title': 'Automatics, robotics and biocybernetics',
163 'description': 'md5:815fc1deb6b3a2bff99de2d5325be482',
e327b736 164 'upload_date': '20130627',
8765222d
S
165 'formats': 'mincount:16',
166 'subtitles': 'mincount:1',
167 },
168 'params': {
169 'force_generic_extractor': True,
170 'skip_download': True,
171 },
172 },
173 # SMIL from http://www1.wdr.de/mediathek/video/livestream/index.html
174 {
175 'url': 'http://metafilegenerator.de/WDR/WDR_FS/hds/hds.smil',
176 'info_dict': {
177 'id': 'hds',
178 'ext': 'flv',
179 'title': 'hds',
180 'formats': 'mincount:1',
181 },
182 'params': {
183 'skip_download': True,
184 },
185 },
186 # SMIL from https://www.restudy.dk/video/play/id/1637
187 {
188 'url': 'https://www.restudy.dk/awsmedia/SmilDirectory/video_1637.xml',
189 'info_dict': {
190 'id': 'video_1637',
191 'ext': 'flv',
192 'title': 'video_1637',
193 'formats': 'mincount:3',
194 },
195 'params': {
196 'skip_download': True,
197 },
198 },
199 # SMIL from http://adventure.howstuffworks.com/5266-cool-jobs-iditarod-musher-video.htm
200 {
201 'url': 'http://services.media.howstuffworks.com/videos/450221/smil-service.smil',
202 'info_dict': {
203 'id': 'smil-service',
204 'ext': 'flv',
205 'title': 'smil-service',
206 'formats': 'mincount:1',
207 },
208 'params': {
209 'skip_download': True,
210 },
211 },
212 # SMIL from http://new.livestream.com/CoheedandCambria/WebsterHall/videos/4719370
213 {
214 'url': 'http://api.new.livestream.com/accounts/1570303/events/1585861/videos/4719370.smil',
215 'info_dict': {
216 'id': '4719370',
217 'ext': 'mp4',
218 'title': '571de1fd-47bc-48db-abf9-238872a58d1f',
219 'formats': 'mincount:3',
220 },
221 'params': {
222 'skip_download': True,
223 },
224 },
1de5cd3b
S
225 # XSPF playlist from http://www.telegraaf.nl/tv/nieuws/binnenland/24353229/__Tikibad_ontruimd_wegens_brand__.html
226 {
227 'url': 'http://www.telegraaf.nl/xml/playlist/2015/8/7/mZlp2ctYIUEB.xspf',
228 'info_dict': {
229 'id': 'mZlp2ctYIUEB',
230 'ext': 'mp4',
231 'title': 'Tikibad ontruimd wegens brand',
232 'description': 'md5:05ca046ff47b931f9b04855015e163a4',
233 'thumbnail': 're:^https?://.*\.jpg$',
234 'duration': 33,
235 },
236 'params': {
237 'skip_download': True,
238 },
239 },
9d939cec
S
240 # MPD from http://dash-mse-test.appspot.com/media.html
241 {
242 'url': 'http://yt-dash-mse-test.commondatastorage.googleapis.com/media/car-20120827-manifest.mpd',
243 'md5': '4b57baab2e30d6eb3a6a09f0ba57ef53',
244 'info_dict': {
245 'id': 'car-20120827-manifest',
246 'ext': 'mp4',
247 'title': 'car-20120827-manifest',
248 'formats': 'mincount:9',
0738187f 249 'upload_date': '20130904',
9d939cec
S
250 },
251 'params': {
252 'format': 'bestvideo',
253 },
254 },
20938f76
S
255 # m3u8 served with Content-Type: audio/x-mpegURL; charset=utf-8
256 {
257 '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',
258 'info_dict': {
259 'id': 'content',
260 'ext': 'mp4',
261 'title': 'content',
262 'formats': 'mincount:8',
263 },
264 'params': {
265 # m3u8 downloads
266 'skip_download': True,
267 }
268 },
edd9b71c
S
269 # m3u8 served with Content-Type: text/plain
270 {
271 'url': 'http://www.nacentapps.com/m3u8/index.m3u8',
272 'info_dict': {
273 'id': 'index',
274 'ext': 'mp4',
275 'title': 'index',
276 'upload_date': '20140720',
277 'formats': 'mincount:11',
278 },
279 'params': {
280 # m3u8 downloads
281 'skip_download': True,
282 }
283 },
c5fa81fe
S
284 # google redirect
285 {
286 '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',
287 'info_dict': {
288 'id': 'cmQHVoWB5FY',
289 'ext': 'mp4',
290 'upload_date': '20130224',
291 'uploader_id': 'TheVerge',
292 'description': 're:^Chris Ziegler takes a look at the\.*',
293 'uploader': 'The Verge',
294 'title': 'First Firefox OS phones side-by-side',
295 },
296 'params': {
297 'skip_download': False,
298 }
299 },
6c91a5a7
S
300 {
301 # redirect in Refresh HTTP header
302 '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',
303 'info_dict': {
304 'id': 'pO8h3EaFRdo',
305 'ext': 'mp4',
306 'title': 'Tripeo Boiler Room x Dekmantel Festival DJ Set',
307 'description': 'md5:6294cc1af09c4049e0652b51a2df10d5',
308 'upload_date': '20150917',
309 'uploader_id': 'brtvofficial',
310 'uploader': 'Boiler Room',
311 },
312 'params': {
313 'skip_download': False,
314 },
315 },
cfe50f04 316 {
79649588 317 'url': 'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html',
d360a146 318 'md5': '85b90ccc9d73b4acd9138d3af4c27f89',
79649588 319 'info_dict': {
d360a146
S
320 'id': '13601338388002',
321 'ext': 'mp4',
79649588
PH
322 'uploader': 'www.hodiho.fr',
323 'title': 'R\u00e9gis plante sa Jeep',
cfe50f04
JMF
324 }
325 },
c19f7764
JMF
326 # bandcamp page with custom domain
327 {
79649588
PH
328 'add_ie': ['Bandcamp'],
329 'url': 'http://bronyrock.com/track/the-pony-mash',
79649588 330 'info_dict': {
fd50bf62
S
331 'id': '3235767654',
332 'ext': 'mp3',
79649588
PH
333 'title': 'The Pony Mash',
334 'uploader': 'M_Pallante',
c19f7764 335 },
79649588 336 'skip': 'There is a limit of 200 free downloads / month for the test song',
c19f7764 337 },
eeb165e6 338 # embedded brightcove video
dd5bcdc4
JMF
339 # it also tests brightcove videos that need to set the 'Referer' in the
340 # http requests
eeb165e6 341 {
3b7d9aa4 342 'add_ie': ['BrightcoveLegacy'],
79649588
PH
343 'url': 'http://www.bfmtv.com/video/bfmbusiness/cours-bourse/cours-bourse-l-analyse-technique-154522/',
344 'info_dict': {
345 'id': '2765128793001',
346 'ext': 'mp4',
347 'title': 'Le cours de bourse : l’analyse technique',
348 'description': 'md5:7e9ad046e968cb2d1114004aba466fd9',
349 'uploader': 'BFM BUSINESS',
eeb165e6 350 },
79649588
PH
351 'params': {
352 'skip_download': True,
eeb165e6
JMF
353 },
354 },
17ab4d3b
PH
355 {
356 # https://github.com/rg3/youtube-dl/issues/2253
357 'url': 'http://bcove.me/i6nfkrc3',
17ab4d3b
PH
358 'md5': '0ba9446db037002366bab3b3eb30c88c',
359 'info_dict': {
fd50bf62
S
360 'id': '3101154703001',
361 'ext': 'mp4',
17ab4d3b
PH
362 'title': 'Still no power',
363 'uploader': 'thestar.com',
364 '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.',
365 },
3b7d9aa4 366 'add_ie': ['BrightcoveLegacy'],
17ab4d3b 367 },
0479c625
S
368 {
369 'url': 'http://www.championat.com/video/football/v/87/87499.html',
370 'md5': 'fb973ecf6e4a78a67453647444222983',
371 'info_dict': {
372 'id': '3414141473001',
373 'ext': 'mp4',
374 'title': 'Видео. Удаление Дзагоева (ЦСКА)',
375 'description': 'Онлайн-трансляция матча ЦСКА - "Волга"',
376 'uploader': 'Championat',
377 },
378 },
bdf97017 379 {
37aab278 380 # https://github.com/rg3/youtube-dl/issues/3541
3b7d9aa4 381 'add_ie': ['BrightcoveLegacy'],
bdf97017
NJ
382 'url': 'http://www.kijk.nl/sbs6/leermijvrouwenkennen/videos/jqMiXKAYan2S/aflevering-1',
383 'info_dict': {
384 'id': '3866516442001',
37aab278 385 'ext': 'mp4',
bdf97017
NJ
386 'title': 'Leer mij vrouwen kennen: Aflevering 1',
387 'description': 'Leer mij vrouwen kennen: Aflevering 1',
388 'uploader': 'SBS Broadcasting',
389 },
37aab278 390 'skip': 'Restricted to Netherlands',
bdf97017 391 'params': {
37aab278 392 'skip_download': True, # m3u8 download
bdf97017
NJ
393 },
394 },
c0d0b01f
JMF
395 # ooyala video
396 {
79649588 397 'url': 'http://www.rollingstone.com/music/videos/norwegian-dj-cashmere-cat-goes-spartan-on-with-me-premiere-20131219',
87830900 398 'md5': '166dd577b433b4d4ebfee10b0824d8ff',
79649588
PH
399 'info_dict': {
400 'id': 'BwY2RxaTrTkslxOfcan0UCf0YqyvWysJ',
401 'ext': 'mp4',
3486df38 402 'title': '2cc213299525360.mov', # that's what we get
53e06b25 403 'duration': 238.231,
c0d0b01f 404 },
87830900 405 'add_ie': ['Ooyala'],
c0d0b01f 406 },
bf94d763
S
407 {
408 # ooyala video embedded with http://player.ooyala.com/iframe.js
409 'url': 'http://www.macrumors.com/2015/07/24/steve-jobs-the-man-in-the-machine-first-trailer/',
410 'info_dict': {
411 'id': 'p0MGJndjoG5SOKqO_hZJuZFPB-Tr5VgB',
412 'ext': 'mp4',
413 'title': '"Steve Jobs: Man in the Machine" trailer',
414 'description': 'The first trailer for the Alex Gibney documentary "Steve Jobs: Man in the Machine."',
53e06b25 415 'duration': 135.427,
bf94d763
S
416 },
417 'params': {
418 'skip_download': True,
419 },
420 },
1b86cc41 421 # embed.ly video
422 {
423 'url': 'http://www.tested.com/science/weird/460206-tested-grinding-coffee-2000-frames-second/',
424 'info_dict': {
425 'id': '9ODmcdjQcHQ',
426 'ext': 'mp4',
0a5bce56
PH
427 'title': 'Tested: Grinding Coffee at 2000 Frames Per Second',
428 'upload_date': '20140225',
429 'description': 'md5:06a40fbf30b220468f1e0957c0f558ff',
430 'uploader': 'Tested',
431 'uploader_id': 'testedcom',
1b86cc41 432 },
433 # No need to test YoutubeIE here
434 'params': {
435 'skip_download': True,
436 },
437 },
60cc4dc4
PH
438 # funnyordie embed
439 {
440 'url': 'http://www.theguardian.com/world/2014/mar/11/obama-zach-galifianakis-between-two-ferns',
60cc4dc4
PH
441 'info_dict': {
442 'id': '18e820ec3f',
443 'ext': 'mp4',
444 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama',
445 'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',
93d020dd 446 },
60cc4dc4 447 },
93d020dd
S
448 # RUTV embed
449 {
450 'url': 'http://www.rg.ru/2014/03/15/reg-dfo/anklav-anons.html',
451 'info_dict': {
452 'id': '776940',
453 'ext': 'mp4',
454 'title': 'Охотское море стало целиком российским',
455 'description': 'md5:5ed62483b14663e2a95ebbe115eb8f43',
456 },
457 'params': {
458 # m3u8 download
459 'skip_download': True,
460 },
aab74fa1 461 },
f37bdbe5
S
462 # TVC embed
463 {
464 '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/',
465 'info_dict': {
466 'id': '55304',
467 'ext': 'mp4',
468 'title': 'Дошкольное воспитание',
469 },
470 },
b827a601
S
471 # SportBox embed
472 {
473 'url': 'http://www.vestifinance.ru/articles/25753',
474 'info_dict': {
475 'id': '25753',
476 'title': 'Вести Экономика ― Прямые трансляции с Форума-выставки "Госзаказ-2013"',
477 },
478 'playlist': [{
479 'info_dict': {
480 'id': '370908',
481 'title': 'Госзаказ. День 3',
482 'ext': 'mp4',
483 }
484 }, {
485 'info_dict': {
486 'id': '370905',
487 'title': 'Госзаказ. День 2',
488 'ext': 'mp4',
489 }
490 }, {
491 'info_dict': {
492 'id': '370902',
493 'title': 'Госзаказ. День 1',
494 'ext': 'mp4',
495 }
496 }],
497 'params': {
498 # m3u8 download
499 'skip_download': True,
500 },
501 },
bf20b9c5
S
502 # Myvi.ru embed
503 {
504 'url': 'http://www.kinomyvi.tv/news/detail/Pervij-dublirovannij-trejler--Uzhastikov-_nOw1',
505 'info_dict': {
506 'id': 'f4dafcad-ff21-423d-89b5-146cfd89fa1e',
507 'ext': 'mp4',
508 'title': 'Ужастики, русский трейлер (2015)',
509 'thumbnail': 're:^https?://.*\.jpg$',
510 'duration': 153,
511 }
512 },
c76799c5
S
513 # XHamster embed
514 {
515 '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',
516 'info_dict': {
517 'id': 'showthread',
518 'title': '[NSFL] [FM15] which pumiscer was this ( vid ) ( alfa as fuck srx )',
519 },
520 'playlist_mincount': 7,
521 },
aab74fa1
PH
522 # Embedded TED video
523 {
524 'url': 'http://en.support.wordpress.com/videos/ted-talks/',
a8eb5a8e 525 'md5': '65fdff94098e4a607385a60c5177c638',
aab74fa1 526 'info_dict': {
a8eb5a8e 527 'id': '1969',
aab74fa1 528 'ext': 'mp4',
a8eb5a8e
PH
529 'title': 'Hidden miracles of the natural world',
530 'uploader': 'Louie Schwartzberg',
531 'description': 'md5:8145d19d320ff3e52f28401f4c4283b9',
aab74fa1 532 }
60cc4dc4 533 },
dfb1b146 534 # Embedded Ustream video
5c386252 535 {
536 'url': 'http://www.american.edu/spa/pti/nsa-privacy-janus-2014.cfm',
537 'md5': '27b99cdb639c9b12a79bca876a073417',
538 'info_dict': {
ca6aada4 539 'id': '45734260',
540 'ext': 'flv',
541 'uploader': 'AU SPA: The NSA and Privacy',
5c386252 542 'title': 'NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman'
543 }
544 },
d95e35d6
S
545 # nowvideo embed hidden behind percent encoding
546 {
547 'url': 'http://www.waoanime.tv/the-super-dimension-fortress-macross-episode-1/',
548 'md5': '2baf4ddd70f697d94b1c18cf796d5107',
549 'info_dict': {
550 'id': '06e53103ca9aa',
551 'ext': 'flv',
552 'title': 'Macross Episode 001 Watch Macross Episode 001 onl',
553 'description': 'No description',
554 },
0f2a2ba1 555 },
893f8832
PH
556 # arte embed
557 {
558 'url': 'http://www.tv-replay.fr/redirection/20-03-14/x-enius-arte-10753389.html',
559 'md5': '7653032cbb25bf6c80d80f217055fa43',
560 'info_dict': {
561 'id': '048195-004_PLUS7-F',
562 'ext': 'flv',
563 'title': 'X:enius',
564 'description': 'md5:d5fdf32ef6613cdbfd516ae658abf168',
565 'upload_date': '20140320',
566 },
567 'params': {
568 'skip_download': 'Requires rtmpdump'
569 }
570 },
cbd55ade
S
571 # francetv embed
572 {
573 'url': 'http://www.tsprod.com/replay-du-concert-alcaline-de-calogero',
574 'info_dict': {
575 'id': 'EV_30231',
576 'ext': 'mp4',
577 'title': 'Alcaline, le concert avec Calogero',
578 'description': 'md5:61f08036dcc8f47e9cfc33aed08ffaff',
579 'upload_date': '20150226',
580 'timestamp': 1424989860,
581 'duration': 5400,
582 },
583 'params': {
584 # m3u8 downloads
585 'skip_download': True,
586 },
587 'expected_warnings': [
588 'Forbidden'
589 ]
590 },
fa35cdad
PH
591 # Condé Nast embed
592 {
593 'url': 'http://www.wired.com/2014/04/honda-asimo/',
594 'md5': 'ba0dfe966fa007657bd1443ee672db0f',
595 'info_dict': {
596 'id': '53501be369702d3275860000',
597 'ext': 'mp4',
598 'title': 'Honda’s New Asimo Robot Is More Human Than Ever',
599 }
ebd3c7b3
PH
600 },
601 # Dailymotion embed
602 {
603 'url': 'http://www.spi0n.com/zap-spi0n-com-n216/',
604 'md5': '441aeeb82eb72c422c7f14ec533999cd',
605 'info_dict': {
606 'id': 'k2mm4bCdJ6CQ2i7c8o2',
607 'ext': 'mp4',
608 'title': 'Le Zap de Spi0n n°216 - Zapping du Web',
0738187f 609 'description': 'md5:faf028e48a461b8b7fad38f1e104b119',
ebd3c7b3 610 'uploader': 'Spi0n',
0738187f
YCH
611 'uploader_id': 'xgditw',
612 'upload_date': '20140425',
613 'timestamp': 1398441542,
ebd3c7b3
PH
614 },
615 'add_ie': ['Dailymotion'],
2b88feed
PH
616 },
617 # YouTube embed
618 {
619 'url': 'http://www.badzine.de/ansicht/datum/2014/06/09/so-funktioniert-die-neue-englische-badminton-liga.html',
620 'info_dict': {
621 'id': 'FXRb4ykk4S0',
622 'ext': 'mp4',
623 'title': 'The NBL Auction 2014',
624 'uploader': 'BADMINTON England',
625 'uploader_id': 'BADMINTONEvents',
626 'upload_date': '20140603',
627 'description': 'md5:9ef128a69f1e262a700ed83edb163a73',
628 },
629 'add_ie': ['Youtube'],
630 'params': {
631 'skip_download': True,
632 }
633 },
c5cd249e
JMF
634 # MTVSercices embed
635 {
1fa309da
YCH
636 'url': 'http://www.vulture.com/2016/06/new-key-peele-sketches-released.html',
637 'md5': 'ca1aef97695ef2c1d6973256a57e5252',
c5cd249e 638 'info_dict': {
1fa309da 639 'id': '769f7ec0-0692-4d62-9b45-0d88074bffc1',
c5cd249e 640 'ext': 'mp4',
1fa309da
YCH
641 'title': 'Key and Peele|October 10, 2012|2|203|Liam Neesons - Uncensored',
642 'description': 'Two valets share their love for movie star Liam Neesons.',
c5cd249e
JMF
643 },
644 },
61013473 645 # YouTube embed via <data-embed-url="">
646 {
647 'url': 'https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM',
61013473 648 'info_dict': {
a8eb5a8e 649 'id': '4vAffPZIT44',
61013473 650 'ext': 'mp4',
a8eb5a8e 651 'title': 'Asphalt 8: Airborne - Update - Welcome to Dubai!',
ed2d6a19
PH
652 'uploader': 'Gameloft',
653 'uploader_id': 'gameloft',
a8eb5a8e
PH
654 'upload_date': '20140828',
655 'description': 'md5:c80da9ed3d83ae6d1876c834de03e1c4',
ed2d6a19
PH
656 },
657 'params': {
658 'skip_download': True,
61013473 659 }
c8e9a235
PH
660 },
661 # Camtasia studio
662 {
663 'url': 'http://www.ll.mit.edu/workshops/education/videocourses/antennas/lecture1/video/',
664 'playlist': [{
665 'md5': '0c5e352edabf715d762b0ad4e6d9ee67',
666 'info_dict': {
667 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
668 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - video1',
669 'ext': 'flv',
670 'duration': 2235.90,
671 }
672 }, {
673 'md5': '10e4bb3aaca9fd630e273ff92d9f3c63',
674 'info_dict': {
675 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final_PIP',
676 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - pip',
677 'ext': 'flv',
678 'duration': 2235.93,
679 }
680 }],
681 'info_dict': {
682 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
683 }
4d805e06
PH
684 },
685 # Flowplayer
686 {
687 'url': 'http://www.handjobhub.com/video/busty-blonde-siri-tit-fuck-while-wank-6313.html',
688 'md5': '9d65602bf31c6e20014319c7d07fba27',
689 'info_dict': {
690 'id': '5123ea6d5e5a7',
691 'ext': 'mp4',
692 'age_limit': 18,
693 'uploader': 'www.handjobhub.com',
d6d9186f 694 'title': 'Busty Blonde Siri Tit Fuck While Wank at HandjobHub.com',
4d805e06 695 }
0990305d 696 },
22a6f150
PH
697 # Multiple brightcove videos
698 # https://github.com/rg3/youtube-dl/issues/2283
699 {
700 'url': 'http://www.newyorker.com/online/blogs/newsdesk/2014/01/always-never-nuclear-command-and-control.html',
701 'info_dict': {
702 'id': 'always-never',
703 'title': 'Always / Never - The New Yorker',
704 },
705 'playlist_count': 3,
706 'params': {
707 'extract_flat': False,
708 'skip_download': True,
709 }
1a94ff68
S
710 },
711 # MLB embed
712 {
713 'url': 'http://umpire-empire.com/index.php/topic/58125-laz-decides-no-thats-low/',
714 'md5': '96f09a37e44da40dd083e12d9a683327',
715 'info_dict': {
716 'id': '33322633',
717 'ext': 'mp4',
718 'title': 'Ump changes call to ball',
719 'description': 'md5:71c11215384298a172a6dcb4c2e20685',
720 'duration': 48,
721 'timestamp': 1401537900,
722 'upload_date': '20140531',
723 'thumbnail': 're:^https?://.*\.jpg$',
724 },
725 },
746c67d7
NJ
726 # Wistia embed
727 {
6c114b12
S
728 'url': 'http://study.com/academy/lesson/north-american-exploration-failed-colonies-of-spain-france-england.html#lesson',
729 'md5': '1953f3a698ab51cfc948ed3992a0b7ff',
746c67d7 730 'info_dict': {
6c114b12 731 'id': '6e2wtrbdaf',
746c67d7 732 'ext': 'mov',
6c114b12
S
733 'title': 'paywall_north-american-exploration-failed-colonies-of-spain-france-england',
734 'description': 'a Paywall Videos video from Remilon',
735 'duration': 644.072,
736 'uploader': 'study.com',
737 'timestamp': 1459678540,
738 'upload_date': '20160403',
739 'filesize': 24687186,
746c67d7
NJ
740 },
741 },
52cffcb1 742 {
743 'url': 'http://thoughtworks.wistia.com/medias/uxjb0lwrcz',
744 'md5': 'baf49c2baa8a7de5f3fc145a8506dcd4',
745 'info_dict': {
746 'id': 'uxjb0lwrcz',
747 'ext': 'mp4',
6c114b12 748 'title': 'Conversation about Hexagonal Rails Part 1',
0738187f 749 'description': 'a Martin Fowler video from ThoughtWorks',
52cffcb1 750 'duration': 1715.0,
85d7b765 751 'uploader': 'thoughtworks.wistia.com',
0738187f 752 'timestamp': 1401832161,
6c114b12 753 'upload_date': '20140603',
70b7e3fb 754 },
52cffcb1 755 },
7ded6545
S
756 # Wistia standard embed (async)
757 {
758 'url': 'https://www.getdrip.com/university/brennan-dunn-drip-workshop/',
759 'info_dict': {
760 'id': '807fafadvk',
761 'ext': 'mp4',
762 'title': 'Drip Brennan Dunn Workshop',
763 'description': 'a JV Webinars video from getdrip-1',
764 'duration': 4986.95,
7ded6545 765 'timestamp': 1463607249,
6c114b12 766 'upload_date': '20160518',
7ded6545
S
767 },
768 'params': {
769 'skip_download': True,
770 }
771 },
ac645ac7
PH
772 # Soundcloud embed
773 {
774 'url': 'http://nakedsecurity.sophos.com/2014/10/29/sscc-171-are-you-sure-that-1234-is-a-bad-password-podcast/',
775 'info_dict': {
776 'id': '174391317',
777 'ext': 'mp3',
778 'description': 'md5:ff867d6b555488ad3c52572bb33d432c',
779 'uploader': 'Sophos Security',
780 'title': 'Chet Chat 171 - Oct 29, 2014',
781 'upload_date': '20141029',
782 }
af63fed7
PH
783 },
784 # Livestream embed
785 {
786 'url': 'http://www.esa.int/Our_Activities/Space_Science/Rosetta/Philae_comet_touch-down_webcast',
787 'info_dict': {
788 'id': '67864563',
789 'ext': 'flv',
790 'upload_date': '20141112',
791 'title': 'Rosetta #CometLanding webcast HL 10',
792 }
793 },
78d3b3e2
YCH
794 # Another Livestream embed, without 'new.' in URL
795 {
796 'url': 'https://www.freespeech.org/',
797 'info_dict': {
798 'id': '123537347',
799 'ext': 'mp4',
800 'title': 're:^FSTV [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
801 },
802 'params': {
803 # Live stream
804 'skip_download': True,
805 },
806 },
65f3a228
PH
807 # LazyYT
808 {
809 'url': 'http://discourse.ubuntu.com/t/unity-8-desktop-mode-windows-on-mir/1986',
810 'info_dict': {
11e611a7 811 'id': '1986',
65f3a228
PH
812 'title': 'Unity 8 desktop-mode windows on Mir! - Ubuntu Discourse',
813 },
814 'playlist_mincount': 2,
4e262a88 815 },
42bdd9d0
PH
816 # Cinchcast embed
817 {
818 'url': 'http://undergroundwellness.com/podcasts/306-5-steps-to-permanent-gut-healing/',
819 'info_dict': {
820 'id': '7141703',
821 'ext': 'mp3',
822 'upload_date': '20141126',
823 'title': 'Jack Tips: 5 Steps to Permanent Gut Healing',
824 }
825 },
501f13fb
PH
826 # Cinerama player
827 {
828 'url': 'http://www.abc.net.au/7.30/content/2015/s4164797.htm',
829 'info_dict': {
830 'id': '730m_DandD_1901_512k',
831 'ext': 'mp4',
832 'uploader': 'www.abc.net.au',
833 'title': 'Game of Thrones with dice - Dungeons and Dragons fantasy role-playing game gets new life - 19/01/2015',
834 }
796df3c6
S
835 },
836 # embedded viddler video
837 {
838 'url': 'http://deadspin.com/i-cant-stop-watching-john-wall-chop-the-nuggets-with-th-1681801597',
839 'info_dict': {
840 'id': '4d03aad9',
841 'ext': 'mp4',
842 'uploader': 'deadspin',
843 'title': 'WALL-TO-GORTAT',
844 'timestamp': 1422285291,
845 'upload_date': '20150126',
846 },
847 'add_ie': ['Viddler'],
a0f71985 848 },
2051acde
S
849 # Libsyn embed
850 {
851 'url': 'http://thedailyshow.cc.com/podcast/episodetwelve',
852 'info_dict': {
853 'id': '3377616',
854 'ext': 'mp3',
855 'title': "The Daily Show Podcast without Jon Stewart - Episode 12: Bassem Youssef: Egypt's Jon Stewart",
856 'description': 'md5:601cb790edd05908957dae8aaa866465',
857 'upload_date': '20150220',
858 },
859 },
a0f71985
PH
860 # jwplayer YouTube
861 {
862 'url': 'http://media.nationalarchives.gov.uk/index.php/webinar-using-discovery-national-archives-online-catalogue/',
863 'info_dict': {
864 'id': 'Mrj4DVp2zeA',
865 'ext': 'mp4',
f37e3f99 866 'upload_date': '20150212',
a0f71985
PH
867 'uploader': 'The National Archives UK',
868 'description': 'md5:a236581cd2449dd2df4f93412f3f01c6',
869 'uploader_id': 'NationalArchives08',
870 'title': 'Webinar: Using Discovery, The National Archives’ online catalogue',
871 },
59b8ab58
PH
872 },
873 # rtl.nl embed
874 {
875 'url': 'http://www.rtlnieuws.nl/nieuws/buitenland/aanslagen-kopenhagen',
876 'playlist_mincount': 5,
877 'info_dict': {
878 'id': 'aanslagen-kopenhagen',
879 'title': 'Aanslagen Kopenhagen | RTL Nieuws',
880 }
255fca5e
S
881 },
882 # Zapiks embed
883 {
884 'url': 'http://www.skipass.com/news/116090-bon-appetit-s5ep3-baqueira-mi-cor.html',
885 'info_dict': {
886 'id': '118046',
887 'ext': 'mp4',
888 'title': 'EP3S5 - Bon Appétit - Baqueira Mi Corazon !',
889 }
890 },
66e568de
S
891 # Kaltura embed (different embed code)
892 {
893 'url': 'http://www.premierchristianradio.com/Shows/Saturday/Unbelievable/Conference-Videos/Os-Guinness-Is-It-Fools-Talk-Unbelievable-Conference-2014',
894 'info_dict': {
895 'id': '1_a52wc67y',
896 'ext': 'flv',
897 'upload_date': '20150127',
898 'uploader_id': 'PremierMedia',
899 'timestamp': int,
900 'title': 'Os Guinness // Is It Fools Talk? // Unbelievable? Conference 2014',
901 },
902 },
6da620de
S
903 # Kaltura embed protected with referrer
904 {
905 'url': 'http://www.disney.nl/disney-channel/filmpjes/achter-de-schermen#/videoId/violetta-achter-de-schermen-ruggero',
906 'info_dict': {
907 'id': '1_g4fbemnq',
908 'ext': 'mp4',
909 'title': 'Violetta - Achter De Schermen - Ruggero',
910 'description': 'Achter de schermen met Ruggero',
911 'timestamp': 1435133761,
912 'upload_date': '20150624',
913 'uploader_id': 'echojecka',
914 },
915 },
87703231
YCH
916 # Kaltura embed with single quotes
917 {
918 'url': 'http://fod.infobase.com/p_ViewPlaylist.aspx?AssignmentID=NUN8ZY',
919 'info_dict': {
920 'id': '0_izeg5utt',
921 'ext': 'mp4',
922 'title': '35871',
923 'timestamp': 1355743100,
924 'upload_date': '20121217',
925 'uploader_id': 'batchUser',
926 },
927 'add_ie': ['Kaltura'],
928 },
427cd050
S
929 {
930 # Kaltura embedded via quoted entry_id
931 'url': 'https://www.oreilly.com/ideas/my-cloud-makes-pretty-pictures',
932 'info_dict': {
933 'id': '0_utuok90b',
934 'ext': 'mp4',
935 'title': '06_matthew_brender_raj_dutt',
936 'timestamp': 1466638791,
937 'upload_date': '20160622',
938 },
939 'add_ie': ['Kaltura'],
940 'expected_warnings': [
941 'Could not send HEAD request'
942 ],
943 'params': {
944 'skip_download': True,
945 }
946 },
135c9c42
S
947 # Eagle.Platform embed (generic URL)
948 {
949 'url': 'http://lenta.ru/news/2015/03/06/navalny/',
4645432d 950 # Not checking MD5 as sometimes the direct HTTP link results in 404 and HLS is used
135c9c42
S
951 'info_dict': {
952 'id': '227304',
953 'ext': 'mp4',
954 'title': 'Навальный вышел на свободу',
955 'description': 'md5:d97861ac9ae77377f3f20eaf9d04b4f5',
956 'thumbnail': 're:^https?://.*\.jpg$',
957 'duration': 87,
958 'view_count': int,
959 'age_limit': 0,
960 },
961 },
d47ae7f6
S
962 # ClipYou (Eagle.Platform) embed (custom URL)
963 {
964 'url': 'http://muz-tv.ru/play/7129/',
4645432d 965 # Not checking MD5 as sometimes the direct HTTP link results in 404 and HLS is used
d47ae7f6
S
966 'info_dict': {
967 'id': '12820',
968 'ext': 'mp4',
969 'title': "'O Sole Mio",
970 'thumbnail': 're:^https?://.*\.jpg$',
971 'duration': 216,
972 'view_count': int,
973 },
974 },
f8388757
S
975 # Pladform embed
976 {
977 'url': 'http://muz-tv.ru/kinozal/view/7400/',
978 'info_dict': {
979 'id': '100183293',
980 'ext': 'mp4',
62259846 981 'title': 'Тайны перевала Дятлова • 1 серия 2 часть',
f8388757
S
982 'description': 'Документальный сериал-расследование одной из самых жутких тайн ХХ века',
983 'thumbnail': 're:^https?://.*\.jpg$',
984 'duration': 694,
985 'age_limit': 0,
986 },
987 },
c798f15b
S
988 # Playwire embed
989 {
990 'url': 'http://www.cinemablend.com/new/First-Joe-Dirt-2-Trailer-Teaser-Stupid-Greatness-70874.html',
991 'info_dict': {
992 'id': '3519514',
993 'ext': 'mp4',
994 'title': 'Joe Dirt 2 Beautiful Loser Teaser Trailer',
995 'thumbnail': 're:^https?://.*\.png$',
996 'duration': 45.115,
997 },
998 },
ad320e9b
NJ
999 # 5min embed
1000 {
1001 'url': 'http://techcrunch.com/video/facebook-creates-on-this-day-crunch-report/518726732/',
1002 'md5': '4c6f127a30736b59b3e2c19234ee2bf7',
1003 'info_dict': {
1004 'id': '518726732',
1005 'ext': 'mp4',
1006 'title': 'Facebook Creates "On This Day" | Crunch Report',
1007 },
1008 },
dc455a5f
S
1009 # SVT embed
1010 {
1011 'url': 'http://www.svt.se/sport/ishockey/jagr-tacklar-giroux-under-intervjun',
1012 'info_dict': {
1013 'id': '2900353',
1014 'ext': 'flv',
1015 'title': 'Här trycker Jagr till Giroux (under SVT-intervjun)',
1016 'duration': 27,
1017 'age_limit': 0,
1018 },
1019 },
a4257017
S
1020 # Crooks and Liars embed
1021 {
1022 'url': 'http://crooksandliars.com/2015/04/fox-friends-says-protecting-atheists',
1023 'info_dict': {
1024 'id': '8RUoRhRi',
1025 'ext': 'mp4',
1026 'title': "Fox & Friends Says Protecting Atheists From Discrimination Is Anti-Christian!",
1027 'description': 'md5:e1a46ad1650e3a5ec7196d432799127f',
1028 'timestamp': 1428207000,
1029 'upload_date': '20150405',
1030 'uploader': 'Heather',
1031 },
1032 },
1033 # Crooks and Liars external embed
1034 {
1035 'url': 'http://theothermccain.com/2010/02/02/video-proves-that-bill-kristol-has-been-watching-glenn-beck/comment-page-1/',
1036 'info_dict': {
1037 'id': 'MTE3MjUtMzQ2MzA',
1038 'ext': 'mp4',
1039 'title': 'md5:5e3662a81a4014d24c250d76d41a08d5',
1040 'description': 'md5:9b8e9542d6c3c5de42d6451b7d780cec',
1041 'timestamp': 1265032391,
1042 'upload_date': '20100201',
1043 'uploader': 'Heather',
1044 },
1045 },
facecb84 1046 # NBC Sports vplayer embed
a2edf2e7 1047 {
facecb84 1048 'url': 'http://www.riderfans.com/forum/showthread.php?121827-Freeman&s=e98fa1ea6dc08e886b1678d35212494a',
a2edf2e7 1049 'info_dict': {
facecb84
S
1050 'id': 'ln7x1qSThw4k',
1051 'ext': 'flv',
1052 'title': "PFT Live: New leader in the 'new-look' defense",
1053 'description': 'md5:65a19b4bbfb3b0c0c5768bed1dfad74e',
0738187f
YCH
1054 'uploader': 'NBCU-SPORTS',
1055 'upload_date': '20140107',
1056 'timestamp': 1389118457,
a2edf2e7 1057 },
418c5cc3 1058 },
de3eb07e
YCH
1059 # NBC News embed
1060 {
1061 'url': 'http://www.vulture.com/2016/06/letterman-couldnt-care-less-about-late-night.html',
1062 'md5': '1aa589c675898ae6d37a17913cf68d66',
1063 'info_dict': {
1064 'id': '701714499682',
1065 'ext': 'mp4',
1066 'title': 'PREVIEW: On Assignment: David Letterman',
1067 '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.',
1068 },
1069 },
418c5cc3
YCH
1070 # UDN embed
1071 {
811586eb 1072 'url': 'https://video.udn.com/news/300346',
01c58f84 1073 'md5': 'fd2060e988c326991037b9aff9df21a6',
418c5cc3 1074 'info_dict': {
01c58f84 1075 'id': '300346',
418c5cc3 1076 'ext': 'mp4',
01c58f84 1077 'title': '中一中男師變性 全校師生力挺',
418c5cc3 1078 'thumbnail': 're:^https?://.*\.jpg$',
811586eb
YCH
1079 },
1080 'params': {
1081 # m3u8 download
1082 'skip_download': True,
1083 },
edfcf7ab
YCH
1084 },
1085 # Ooyala embed
1086 {
1087 'url': 'http://www.businessinsider.com/excel-index-match-vlookup-video-how-to-2015-2?IR=T',
1088 'info_dict': {
1089 'id': '50YnY4czr4ms1vJ7yz3xzq0excz_pUMs',
1090 'ext': 'mp4',
cce9d15d 1091 'description': 'VIDEO: INDEX/MATCH versus VLOOKUP.',
edfcf7ab 1092 'title': 'This is what separates the Excel masters from the wannabes',
53e06b25 1093 'duration': 191.933,
edfcf7ab
YCH
1094 },
1095 'params': {
1096 # m3u8 downloads
1097 'skip_download': True,
1098 }
d6fd958c 1099 },
b26733ba
YCH
1100 # Brightcove URL in single quotes
1101 {
1102 'url': 'http://www.sportsnet.ca/baseball/mlb/sn-presents-russell-martin-world-citizen/',
1103 'md5': '4ae374f1f8b91c889c4b9203c8c752af',
1104 'info_dict': {
1105 'id': '4255764656001',
1106 'ext': 'mp4',
1107 'title': 'SN Presents: Russell Martin, World Citizen',
1108 '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.',
1109 'uploader': 'Rogers Sportsnet',
0738187f
YCH
1110 'uploader_id': '1704050871',
1111 'upload_date': '20150525',
1112 'timestamp': 1432570283,
b26733ba 1113 },
756f574e
YCH
1114 },
1115 # Dailymotion Cloud video
1116 {
1117 'url': 'http://replay.publicsenat.fr/vod/le-debat/florent-kolandjian,dominique-cena,axel-decourtye,laurence-abeille,bruno-parmentier/175910',
7d52c052 1118 'md5': 'dcaf23ad0c67a256f4278bce6e0bae38',
756f574e 1119 'info_dict': {
7d52c052 1120 'id': 'x2uy8t3',
756f574e 1121 'ext': 'mp4',
7d52c052
YCH
1122 'title': 'Sauvons les abeilles ! - Le débat',
1123 'description': 'md5:d9082128b1c5277987825d684939ca26',
756f574e 1124 'thumbnail': 're:^https?://.*\.jpe?g$',
7d52c052
YCH
1125 'timestamp': 1434970506,
1126 'upload_date': '20150622',
1127 'uploader': 'Public Sénat',
1128 'uploader_id': 'xa9gza',
756f574e 1129 }
a5158f38 1130 },
8084be78
S
1131 # OnionStudios embed
1132 {
1133 'url': 'http://www.clickhole.com/video/dont-understand-bitcoin-man-will-mumble-explanatio-2537',
1134 'info_dict': {
1135 'id': '2855',
1136 'ext': 'mp4',
1137 'title': 'Don’t Understand Bitcoin? This Man Will Mumble An Explanation At You',
1138 'thumbnail': 're:^https?://.*\.jpe?g$',
1139 'uploader': 'ClickHole',
1140 'uploader_id': 'clickhole',
1141 }
1142 },
b8c1cc1a
S
1143 # SnagFilms embed
1144 {
1145 'url': 'http://whilewewatch.blogspot.ru/2012/06/whilewewatch-whilewewatch-gripping.html',
1146 'info_dict': {
1147 'id': '74849a00-85a9-11e1-9660-123139220831',
1148 'ext': 'mp4',
1149 'title': '#whilewewatch',
1150 }
1151 },
a5158f38
YCH
1152 # AdobeTVVideo embed
1153 {
1154 'url': 'https://helpx.adobe.com/acrobat/how-to/new-experience-acrobat-dc.html?set=acrobat--get-started--essential-beginners',
1155 'md5': '43662b577c018ad707a63766462b1e87',
1156 'info_dict': {
1157 'id': '2456',
1158 'ext': 'mp4',
1159 'title': 'New experience with Acrobat DC',
1160 'description': 'New experience with Acrobat DC',
1161 'duration': 248.667,
1162 },
1f812580
S
1163 },
1164 # ScreenwaveMedia embed
1165 {
1166 'url': 'http://www.thecinemasnob.com/the-cinema-snob/a-nightmare-on-elm-street-2-freddys-revenge1',
1167 'md5': '24ace5baba0d35d55c6810b51f34e9e0',
1168 'info_dict': {
1169 'id': 'cinemasnob-55d26273809dd',
1170 'ext': 'mp4',
1171 'title': 'cinemasnob',
1172 },
ed126900 1173 },
1174 # BrightcoveInPageEmbed embed
1175 {
1176 'url': 'http://www.geekandsundry.com/tabletop-bonus-wils-final-thoughts-on-dread/',
1177 'info_dict': {
1178 'id': '4238694884001',
1179 'ext': 'flv',
1180 'title': 'Tabletop: Dread, Last Thoughts',
1181 'description': 'Tabletop: Dread, Last Thoughts',
1182 'duration': 51690,
1183 },
750b9ff0
YCH
1184 },
1185 # JWPlayer with M3U8
1186 {
1187 'url': 'http://ren.tv/novosti/2015-09-25/sluchaynyy-prohozhiy-poymal-avtougonshchika-v-murmanske-video',
1188 'info_dict': {
1189 'id': 'playlist',
1190 'ext': 'mp4',
1191 'title': 'Случайный прохожий поймал автоугонщика в Мурманске. ВИДЕО | РЕН ТВ',
1192 'uploader': 'ren.tv',
1193 },
1194 'params': {
1195 # m3u8 downloads
1196 'skip_download': True,
1197 }
d10fe835
YCH
1198 },
1199 # Brightcove embed, with no valid 'renditions' but valid 'IOSRenditions'
1200 # This video can't be played in browsers if Flash disabled and UA set to iPhone, which is actually a false alarm
1201 {
1202 'url': 'https://dl.dropboxusercontent.com/u/29092637/interview.html',
1203 'info_dict': {
1204 'id': '4785848093001',
1205 'ext': 'mp4',
1206 'title': 'The Cardinal Pell Interview',
1207 'description': 'Sky News Contributor Andrew Bolt interviews George Pell in Rome, following the Cardinal\'s evidence before the Royal Commission into Child Abuse. ',
1208 'uploader': 'GlobeCast Australia - GlobeStream',
0738187f
YCH
1209 'uploader_id': '2733773828001',
1210 'upload_date': '20160304',
1211 'timestamp': 1457083087,
d10fe835
YCH
1212 },
1213 'params': {
1214 # m3u8 downloads
1215 'skip_download': True,
1216 },
1217 },
134c207e
YCH
1218 # Another form of arte.tv embed
1219 {
1220 'url': 'http://www.tv-replay.fr/redirection/09-04-16/arte-reportage-arte-11508975.html',
1221 'md5': '850bfe45417ddf221288c88a0cffe2e2',
1222 'info_dict': {
1223 'id': '030273-562_PLUS7-F',
1224 'ext': 'mp4',
1225 'title': 'ARTE Reportage - Nulle part, en France',
1226 'description': 'md5:e3a0e8868ed7303ed509b9e3af2b870d',
1227 'upload_date': '20160409',
1228 },
1229 },
b8f67449
KM
1230 # LiveLeak embed
1231 {
1232 'url': 'http://www.wykop.pl/link/3088787/',
1233 'md5': 'ace83b9ed19b21f68e1b50e844fdf95d',
1234 'info_dict': {
1235 'id': '874_1459135191',
1236 'ext': 'mp4',
1237 'title': 'Man shows poor quality of new apartment building',
1238 'description': 'The wall is like a sand pile.',
1239 'uploader': 'Lake8737',
1240 }
1241 },
4a120778
YCH
1242 # Duplicated embedded video URLs
1243 {
1244 'url': 'http://www.hudl.com/athlete/2538180/highlights/149298443',
1245 'info_dict': {
1246 'id': '149298443_480_16c25b74_2',
1247 'ext': 'mp4',
1248 'title': 'vs. Blue Orange Spring Game',
1249 'uploader': 'www.hudl.com',
1250 },
1251 },
371ddb14
S
1252 # twitter:player:stream embed
1253 {
1254 'url': 'http://www.rtl.be/info/video/589263.aspx?CategoryID=288',
1255 'info_dict': {
1256 'id': 'master',
1257 'ext': 'mp4',
1258 'title': 'Une nouvelle espèce de dinosaure découverte en Argentine',
1259 'uploader': 'www.rtl.be',
1260 },
1261 'params': {
1262 # m3u8 downloads
1263 'skip_download': True,
1264 },
1265 },
32917907
RA
1266 # twitter:player embed
1267 {
1268 'url': 'http://www.theatlantic.com/video/index/484130/what-do-black-holes-sound-like/',
1269 'md5': 'a3e0df96369831de324f0778e126653c',
1270 'info_dict': {
1271 'id': '4909620399001',
1272 'ext': 'mp4',
1273 'title': 'What Do Black Holes Sound Like?',
1274 'description': 'what do black holes sound like',
1275 'upload_date': '20160524',
1276 'uploader_id': '29913724001',
1277 'timestamp': 1464107587,
1278 'uploader': 'TheAtlantic',
1279 },
1280 'add_ie': ['BrightcoveLegacy'],
fd6ca382
YCH
1281 },
1282 # Facebook <iframe> embed
1283 {
1284 'url': 'https://www.hostblogger.de/blog/archives/6181-Auto-jagt-Betonmischer.html',
dbf0157a 1285 'md5': 'fbcde74f534176ecb015849146dd3aee',
fd6ca382
YCH
1286 'info_dict': {
1287 'id': '599637780109885',
1288 'ext': 'mp4',
1289 'title': 'Facebook video #599637780109885',
1290 },
1291 },
1292 # Facebook API embed
1293 {
1294 'url': 'http://www.lothype.com/blue-stars-2016-preview-standstill-full-show/',
dbf0157a 1295 'md5': 'a47372ee61b39a7b90287094d447d94e',
fd6ca382
YCH
1296 'info_dict': {
1297 'id': '10153467542406923',
1298 'ext': 'mp4',
1299 'title': 'Facebook video #10153467542406923',
1300 },
7deef1ba
YCH
1301 },
1302 # Wordpress "YouTube Video Importer" plugin
1303 {
1304 'url': 'http://www.lothype.com/blue-devils-drumline-stanford-lot-2016/',
dbf0157a 1305 'md5': 'd16797741b560b485194eddda8121b48',
7deef1ba
YCH
1306 'info_dict': {
1307 'id': 'HNTXWDXV9Is',
1308 'ext': 'mp4',
1309 'title': 'Blue Devils Drumline Stanford lot 2016',
1310 'upload_date': '20160627',
1311 'uploader_id': 'GENOCIDE8GENERAL10',
1312 'uploader': 'cylus cyrus',
1313 },
1314 },
81953d1a
RA
1315 {
1316 # video stored on custom kaltura server
1317 'url': 'http://www.expansion.com/multimedia/videos.html?media=EQcM30NHIPv',
1318 'md5': '537617d06e64dfed891fa1593c4b30cc',
1319 'info_dict': {
1320 'id': '0_1iotm5bh',
1321 'ext': 'mp4',
1322 'title': 'Elecciones británicas: 5 lecciones para Rajoy',
1323 'description': 'md5:435a89d68b9760b92ce67ed227055f16',
1324 'uploader_id': 'videos.expansion@el-mundo.net',
1325 'upload_date': '20150429',
1326 'timestamp': 1430303472,
1327 },
1328 'add_ie': ['Kaltura'],
1329 },
c03adf90
YCH
1330 {
1331 # Non-standard Vimeo embed
1332 'url': 'https://openclassrooms.com/courses/understanding-the-web',
1333 'md5': '64d86f1c7d369afd9a78b38cbb88d80a',
1334 'info_dict': {
1335 'id': '148867247',
1336 'ext': 'mp4',
1337 'title': 'Understanding the web - Teaser',
1338 'description': 'This is "Understanding the web - Teaser" by openclassrooms on Vimeo, the home for high quality videos and the people who love them.',
1339 'upload_date': '20151214',
1340 'uploader': 'OpenClassrooms',
1341 'uploader_id': 'openclassrooms',
1342 },
1343 'add_ie': ['Vimeo'],
1344 },
6e6b70d6
S
1345 # {
1346 # # TODO: find another test
1347 # # http://schema.org/VideoObject
1348 # 'url': 'https://flipagram.com/f/nyvTSJMKId',
1349 # 'md5': '888dcf08b7ea671381f00fab74692755',
1350 # 'info_dict': {
1351 # 'id': 'nyvTSJMKId',
1352 # 'ext': 'mp4',
1353 # 'title': 'Flipagram by sjuria101 featuring Midnight Memories by One Direction',
1354 # 'description': '#love for cats.',
1355 # 'timestamp': 1461244995,
1356 # 'upload_date': '20160421',
1357 # },
1358 # 'params': {
1359 # 'force_generic_extractor': True,
1360 # },
1361 # }
cfe50f04 1362 ]
9b122384 1363
9b122384
PH
1364 def report_following_redirect(self, new_url):
1365 """Report information extraction."""
79649588 1366 self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
9b122384 1367
4fc946b5
PH
1368 def _extract_rss(self, url, video_id, doc):
1369 playlist_title = doc.find('./channel/title').text
1370 playlist_desc_el = doc.find('./channel/description')
1371 playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
1372
76c73715
PH
1373 entries = []
1374 for it in doc.findall('./channel/item'):
1375 next_url = xpath_text(it, 'link', fatal=False)
1376 if not next_url:
1377 enclosure_nodes = it.findall('./enclosure')
1378 for e in enclosure_nodes:
1379 next_url = e.attrib.get('url')
1380 if next_url:
1381 break
1382
1383 if not next_url:
1384 continue
1385
1386 entries.append({
1387 '_type': 'url',
1388 'url': next_url,
1389 'title': it.find('title').text,
1390 })
4fc946b5
PH
1391
1392 return {
1393 '_type': 'playlist',
1394 'id': url,
1395 'title': playlist_title,
1396 'description': playlist_desc,
1397 'entries': entries,
1398 }
1399
c8e9a235
PH
1400 def _extract_camtasia(self, url, video_id, webpage):
1401 """ Returns None if no camtasia video can be found. """
1402
1403 camtasia_cfg = self._search_regex(
1404 r'fo\.addVariable\(\s*"csConfigFile",\s*"([^"]+)"\s*\);',
1405 webpage, 'camtasia configuration file', default=None)
1406 if camtasia_cfg is None:
1407 return None
1408
1409 title = self._html_search_meta('DC.title', webpage, fatal=True)
1410
1411 camtasia_url = compat_urlparse.urljoin(url, camtasia_cfg)
1412 camtasia_cfg = self._download_xml(
1413 camtasia_url, video_id,
1414 note='Downloading camtasia configuration',
1415 errnote='Failed to download camtasia configuration')
1416 fileset_node = camtasia_cfg.find('./playlist/array/fileset')
1417
1418 entries = []
1419 for n in fileset_node.getchildren():
1420 url_n = n.find('./uri')
1421 if url_n is None:
1422 continue
1423
1424 entries.append({
1425 'id': os.path.splitext(url_n.text.rpartition('/')[2])[0],
1426 'title': '%s - %s' % (title, n.tag),
1427 'url': compat_urlparse.urljoin(url, url_n.text),
1428 'duration': float_or_none(n.find('./duration').text),
1429 })
1430
1431 return {
1432 '_type': 'playlist',
1433 'entries': entries,
1434 'title': title,
1435 }
1436
9b122384 1437 def _real_extract(self, url):
ebd3c7b3
PH
1438 if url.startswith('//'):
1439 return {
1440 '_type': 'url',
20991253 1441 'url': self.http_scheme() + url,
ebd3c7b3
PH
1442 }
1443
a7130543
JMF
1444 parsed_url = compat_urlparse.urlparse(url)
1445 if not parsed_url.scheme:
04b4d394
PH
1446 default_search = self._downloader.params.get('default_search')
1447 if default_search is None:
1f7ccb90 1448 default_search = 'fixup_error'
04b4d394 1449
1f7ccb90 1450 if default_search in ('auto', 'auto_warning', 'fixup_error'):
04b4d394
PH
1451 if '/' in url:
1452 self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
1453 return self.url_result('http://' + url)
1f7ccb90 1454 elif default_search != 'fixup_error':
9c1fc022 1455 if default_search == 'auto_warning':
0e67ab0d
PH
1456 if re.match(r'^(?:url|URL)$', url):
1457 raise ExtractorError(
1458 'Invalid URL: %r . Call youtube-dl like this: youtube-dl -v "https://www.youtube.com/watch?v=BaW_jenozKc" ' % url,
1459 expected=True)
1460 else:
1461 self._downloader.report_warning(
7571c02c 1462 'Falling back to youtube search for %s . Set --default-search "auto" to suppress this warning.' % url)
04b4d394 1463 return self.url_result('ytsearch:' + url)
1f7ccb90
PH
1464
1465 if default_search in ('error', 'fixup_error'):
7571c02c 1466 raise ExtractorError(
b74e86f4
PH
1467 '%r is not a valid URL. '
1468 'Set --default-search "ytsearch" (or run youtube-dl "ytsearch:%s" ) to search YouTube'
1469 % (url, url), expected=True)
04b4d394 1470 else:
f2f2c0c2
PH
1471 if ':' not in default_search:
1472 default_search += ':'
04b4d394 1473 return self.url_result(default_search + url)
4d54ef20
PH
1474
1475 url, smuggled_data = unsmuggle_url(url)
1476 force_videoid = None
d6e6a422 1477 is_intentional = smuggled_data and smuggled_data.get('to_generic')
4d54ef20
PH
1478 if smuggled_data and 'force_videoid' in smuggled_data:
1479 force_videoid = smuggled_data['force_videoid']
1480 video_id = force_videoid
1481 else:
1ddb9456 1482 video_id = compat_urllib_parse_unquote(os.path.splitext(url.rstrip('/').split('/')[-1])[0])
a7130543 1483
79649588 1484 self.to_screen('%s: Requesting header' % video_id)
c1d1facd 1485
ebab4520 1486 head_req = HEADRequest(url)
23be51d8 1487 head_response = self._request_webpage(
ebab4520
PH
1488 head_req, video_id,
1489 note=False, errnote='Could not send HEAD request to %s' % url,
1490 fatal=False)
42393ce2 1491
23be51d8 1492 if head_response is not False:
42393ce2 1493 # Check for redirect
23be51d8 1494 new_url = head_response.geturl()
42393ce2
PH
1495 if url != new_url:
1496 self.report_following_redirect(new_url)
4d54ef20
PH
1497 if force_videoid:
1498 new_url = smuggle_url(
1499 new_url, {'force_videoid': force_videoid})
cecaaf3f 1500 return self.url_result(new_url)
42393ce2 1501
23be51d8
PH
1502 full_response = None
1503 if head_response is False:
5c2266df 1504 request = sanitized_Request(url)
58bde34a
S
1505 request.add_header('Accept-Encoding', '*')
1506 full_response = self._request_webpage(request, video_id)
23be51d8
PH
1507 head_response = full_response
1508
f930e0c7
S
1509 info_dict = {
1510 'id': video_id,
1511 'title': compat_urllib_parse_unquote(os.path.splitext(url_basename(url))[0]),
303dcdb9 1512 'upload_date': unified_strdate(head_response.headers.get('Last-Modified'))
f930e0c7
S
1513 }
1514
23be51d8 1515 # Check for direct link to a video
955737b2 1516 content_type = head_response.headers.get('Content-Type', '').lower()
263eff95 1517 m = re.match(r'^(?P<type>audio|video|application(?=/(?:ogg$|(?:vnd\.apple\.|x-)?mpegurl)))/(?P<format_id>[^;\s]+)', content_type)
23be51d8 1518 if m:
f930e0c7
S
1519 format_id = m.group('format_id')
1520 if format_id.endswith('mpegurl'):
eadc3ccd 1521 formats = self._extract_m3u8_formats(url, video_id, 'mp4')
f930e0c7
S
1522 elif format_id == 'f4m':
1523 formats = self._extract_f4m_formats(url, video_id)
eadc3ccd 1524 else:
1525 formats = [{
1526 'format_id': m.group('format_id'),
1527 'url': url,
1528 'vcodec': 'none' if m.group('type') == 'audio' else None
1529 }]
de6c51e8 1530 info_dict['direct'] = True
19dbaeec 1531 self._sort_formats(formats)
de6c51e8 1532 info_dict['formats'] = formats
f930e0c7 1533 return info_dict
42393ce2 1534
d6e6a422 1535 if not self._downloader.params.get('test', False) and not is_intentional:
2fece970
S
1536 force = self._downloader.params.get('force_generic_extractor', False)
1537 self._downloader.report_warning(
1538 '%s on generic information extractor.' % ('Forcing' if force else 'Falling back'))
d6e6a422 1539
4e262a88 1540 if not full_response:
5c2266df 1541 request = sanitized_Request(url)
58bde34a
S
1542 # Some webservers may serve compressed content of rather big size (e.g. gzipped flac)
1543 # making it impossible to download only chunk of the file (yet we need only 512kB to
1544 # test whether it's HTML or not). According to youtube-dl default Accept-Encoding
1545 # that will always result in downloading the whole file that is not desirable.
1546 # Therefore for extraction pass we have to override Accept-Encoding to any in order
1547 # to accept raw bytes and being able to download only a chunk.
1548 # It may probably better to solve this by checking Content-Type for application/octet-stream
1549 # after HEAD request finishes, but not sure if we can rely on this.
1550 request.add_header('Accept-Encoding', '*')
1551 full_response = self._request_webpage(request, video_id)
4e262a88 1552
5940862d
S
1553 first_bytes = full_response.read(512)
1554
1555 # Is it an M3U playlist?
0d769bcb 1556 if first_bytes.startswith(b'#EXTM3U'):
5940862d 1557 info_dict['formats'] = self._extract_m3u8_formats(url, video_id, 'mp4')
19dbaeec 1558 self._sort_formats(info_dict['formats'])
5940862d
S
1559 return info_dict
1560
4e262a88
PH
1561 # Maybe it's a direct link to a video?
1562 # Be careful not to download the whole thing!
61ca9a80 1563 if not is_html(first_bytes):
4e262a88
PH
1564 self._downloader.report_warning(
1565 'URL could be a direct video link, returning it as such.')
f930e0c7 1566 info_dict.update({
4e262a88
PH
1567 'direct': True,
1568 'url': url,
f930e0c7
S
1569 })
1570 return info_dict
4e262a88
PH
1571
1572 webpage = self._webpage_read_content(
1573 full_response, url, video_id, prefix=first_bytes)
1574
9b122384 1575 self.report_extraction(video_id)
887c6acd 1576
1b840245 1577 # Is it an RSS feed, a SMIL file, an XSPF playlist or a MPD manifest?
4fc946b5 1578 try:
f7854627 1579 doc = compat_etree_fromstring(webpage.encode('utf-8'))
4fc946b5
PH
1580 if doc.tag == 'rss':
1581 return self._extract_rss(url, video_id, doc)
e5e8d20a 1582 elif re.match(r'^(?:{[^}]+})?smil$', doc.tag):
19dbaeec
S
1583 smil = self._parse_smil(doc, url, video_id)
1584 self._sort_formats(smil['formats'])
1585 return smil
729accb4
S
1586 elif doc.tag == '{http://xspf.org/ns/0/}playlist':
1587 return self.playlist_result(self._parse_xspf(doc, video_id), video_id)
1b840245 1588 elif re.match(r'(?i)^(?:{[^}]+})?MPD$', doc.tag):
f930e0c7
S
1589 info_dict['formats'] = self._parse_mpd_formats(
1590 doc, video_id, mpd_base_url=url.rpartition('/')[0])
19dbaeec 1591 self._sort_formats(info_dict['formats'])
f930e0c7
S
1592 return info_dict
1593 elif re.match(r'^{http://ns\.adobe\.com/f4m/[12]\.0}manifest$', doc.tag):
1594 info_dict['formats'] = self._parse_f4m_formats(doc, url, video_id)
19dbaeec 1595 self._sort_formats(info_dict['formats'])
f930e0c7 1596 return info_dict
f7300c5c 1597 except compat_xml_parse_error:
4fc946b5
PH
1598 pass
1599
c8e9a235
PH
1600 # Is it a Camtasia project?
1601 camtasia_res = self._extract_camtasia(url, video_id, webpage)
1602 if camtasia_res is not None:
1603 return camtasia_res
1604
14390730
S
1605 # Sometimes embedded video player is hidden behind percent encoding
1606 # (e.g. https://github.com/rg3/youtube-dl/issues/2448)
1607 # Unescaping the whole page allows to handle those cases in a generic way
45eedbe5 1608 webpage = compat_urllib_parse_unquote(webpage)
1f7659db 1609
887c6acd
PH
1610 # it's tempting to parse this further, but you would
1611 # have to take into account all the variations like
1612 # Video Title - Site Name
1613 # Site Name | Video Title
1614 # Video Title - Tagline | Site Name
1615 # and so on and so forth; it's just not practical
6f41b2bc
S
1616 video_title = self._og_search_title(
1617 webpage, default=None) or self._html_search_regex(
79649588
PH
1618 r'(?s)<title>(.*?)</title>', webpage, 'video title',
1619 default='video')
ef4fd848 1620
4d805e06
PH
1621 # Try to detect age limit automatically
1622 age_limit = self._rta_search(webpage)
1623 # And then there are the jokers who advertise that they use RTA,
1624 # but actually don't.
1625 AGE_LIMIT_MARKERS = [
1626 r'Proudly Labeled <a href="http://www.rtalabel.org/" title="Restricted to Adults">RTA</a>',
1627 ]
1628 if any(re.search(marker, webpage) for marker in AGE_LIMIT_MARKERS):
1629 age_limit = 18
1630
ef4fd848
PH
1631 # video uploader is domain name
1632 video_uploader = self._search_regex(
79649588 1633 r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
887c6acd 1634
6f41b2bc
S
1635 video_description = self._og_search_description(webpage, default=None)
1636 video_thumbnail = self._og_search_thumbnail(webpage, default=None)
1637
ed2d6a19 1638 # Helper method
83992676 1639 def _playlist_from_matches(matches, getter=None, ie=None):
3b2f933b 1640 urlrs = orderedSet(
83992676 1641 self.url_result(self._proto_relative_url(getter(m) if getter else m), ie)
3b2f933b 1642 for m in matches)
ed2d6a19
PH
1643 return self.playlist_result(
1644 urlrs, playlist_id=video_id, playlist_title=video_title)
1645
1f4b722b 1646 # Look for Brightcove Legacy Studio embeds
4fcaa4f4 1647 bc_urls = BrightcoveLegacyIE._extract_brightcove_urls(webpage)
99877772 1648 if bc_urls:
79649588 1649 self.to_screen('Brightcove video detected.')
99877772
PH
1650 entries = [{
1651 '_type': 'url',
1652 'url': smuggle_url(bc_url, {'Referer': url}),
3b7d9aa4 1653 'ie_key': 'BrightcoveLegacy'
99877772
PH
1654 } for bc_url in bc_urls]
1655
1656 return {
1657 '_type': 'playlist',
1658 'title': video_title,
1659 'id': video_id,
1660 'entries': entries,
1661 }
cfe50f04 1662
f6519f89
S
1663 # Look for Brightcove New Studio embeds
1664 bc_urls = BrightcoveNewIE._extract_urls(webpage)
1665 if bc_urls:
1666 return _playlist_from_matches(bc_urls, ie='BrightcoveNew')
ed126900 1667
4d8819d2
S
1668 # Look for ThePlatform embeds
1669 tp_urls = ThePlatformIE._extract_urls(webpage)
1670 if tp_urls:
1671 return _playlist_from_matches(tp_urls, ie='ThePlatform')
1672
48a5eabc
S
1673 # Look for Vessel embeds
1674 vessel_urls = VesselIE._extract_urls(webpage)
1675 if vessel_urls:
1676 return _playlist_from_matches(vessel_urls, ie=VesselIE.ie_key())
1677
59b8ab58
PH
1678 # Look for embedded rtl.nl player
1679 matches = re.findall(
97b570a9 1680 r'<iframe[^>]+?src="((?:https?:)?//(?:www\.)?rtl\.nl/system/videoplayer/[^"]+(?:video_)?embed[^"]+)"',
59b8ab58
PH
1681 webpage)
1682 if matches:
1683 return _playlist_from_matches(matches, ie='RtlNl')
1684
b407e173
YCH
1685 vimeo_url = VimeoIE._extract_vimeo_url(url, webpage)
1686 if vimeo_url is not None:
1687 return self.url_result(vimeo_url)
7115ca84 1688
a1b85269
YCH
1689 vid_me_embed_url = self._search_regex(
1690 r'src=[\'"](https?://vid\.me/[^\'"]+)[\'"]',
1691 webpage, 'vid.me embed', default=None)
1692 if vid_me_embed_url is not None:
1693 return self.url_result(vid_me_embed_url, 'Vidme')
1694
53c1d3ef 1695 # Look for embedded YouTube player
1f9da904 1696 matches = re.findall(r'''(?x)
2b88feed
PH
1697 (?:
1698 <iframe[^>]+?src=|
c71dfccc 1699 data-video-url=|
2b88feed 1700 <embed[^>]+?src=|
a7e97f6d
PH
1701 embedSWF\(?:\s*|
1702 new\s+SWFObject\(
2b88feed
PH
1703 )
1704 (["\'])
1bf5423e 1705 (?P<url>(?:https?:)?//(?:www\.)?youtube(?:-nocookie)?\.com/
6b08cdf6 1706 (?:embed|v|p)/.+?)
1f9da904 1707 \1''', webpage)
887c6acd 1708 if matches:
ed2d6a19 1709 return _playlist_from_matches(
3b2f933b 1710 matches, lambda m: unescapeHTML(m[1]))
53c1d3ef 1711
65f3a228
PH
1712 # Look for lazyYT YouTube embed
1713 matches = re.findall(
1714 r'class="lazyYT" data-youtube-id="([^"]+)"', webpage)
1715 if matches:
1716 return _playlist_from_matches(matches, lambda m: unescapeHTML(m))
1717
7deef1ba
YCH
1718 # Look for Wordpress "YouTube Video Importer" plugin
1719 matches = re.findall(r'''(?x)<div[^>]+
1720 class=(?P<q1>[\'"])[^\'"]*\byvii_single_video_player\b[^\'"]*(?P=q1)[^>]+
1721 data-video_id=(?P<q2>[\'"])([^\'"]+)(?P=q2)''', webpage)
1722 if matches:
1723 return _playlist_from_matches(matches, lambda m: m[-1])
1724
ad213a1d 1725 matches = DailymotionIE._extract_urls(webpage)
355e4fd0 1726 if matches:
ad213a1d 1727 return _playlist_from_matches(matches)
355e4fd0 1728
8489578d
NJ
1729 # Look for embedded Dailymotion playlist player (#3822)
1730 m = re.search(
1731 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.[a-z]{2,3}/widget/jukebox\?.+?)\1', webpage)
1732 if m:
1733 playlists = re.findall(
1734 r'list\[\]=/playlist/([^/]+)/', unescapeHTML(m.group('url')))
1735 if playlists:
1736 return _playlist_from_matches(
1737 playlists, lambda p: '//dailymotion.com/playlist/%s' % p)
1738
ef4fd848
PH
1739 # Look for embedded Wistia player
1740 match = re.search(
281d3f1d 1741 r'<(?:meta[^>]+?content|iframe[^>]+?src)=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
ef4fd848 1742 if match:
9471c444
NJ
1743 embed_url = self._proto_relative_url(
1744 unescapeHTML(match.group('url')))
ef4fd848
PH
1745 return {
1746 '_type': 'url_transparent',
9471c444 1747 'url': embed_url,
ef4fd848
PH
1748 'ie_key': 'Wistia',
1749 'uploader': video_uploader,
ef4fd848 1750 }
5f6a1245 1751
9471c444 1752 match = re.search(r'(?:id=["\']wistia_|data-wistia-?id=["\']|Wistia\.embed\(["\'])(?P<id>[^"\']+)', webpage)
746c67d7
NJ
1753 if match:
1754 return {
1755 '_type': 'url_transparent',
6c114b12 1756 'url': 'wistia:%s' % match.group('id'),
746c67d7
NJ
1757 'ie_key': 'Wistia',
1758 'uploader': video_uploader,
746c67d7 1759 }
ef4fd848 1760
aa5957ac
S
1761 match = re.search(
1762 r'''(?sx)
1763 <script[^>]+src=(["'])(?:https?:)?//fast\.wistia\.com/assets/external/E-v1\.js\1[^>]*>.*?
1764 <div[^>]+class=(["']).*?\bwistia_async_(?P<id>[a-z0-9]+)\b.*?\2
1765 ''', webpage)
1766 if match:
1767 return self.url_result(self._proto_relative_url(
1768 'wistia:%s' % match.group('id')), 'Wistia')
1769
bab19a8e
S
1770 # Look for SVT player
1771 svt_url = SVTIE._extract_url(webpage)
1772 if svt_url:
1773 return self.url_result(svt_url, 'SVT')
1774
fa35cdad
PH
1775 # Look for embedded condenast player
1776 matches = re.findall(
1777 r'<iframe\s+(?:[a-zA-Z-]+="[^"]+"\s+)*?src="(https?://player\.cnevids\.com/embed/[^"]+")',
1778 webpage)
1779 if matches:
1780 return {
1781 '_type': 'playlist',
1782 'entries': [{
1783 '_type': 'url',
1784 'ie_key': 'CondeNast',
1785 'url': ma,
1786 } for ma in matches],
1787 'title': video_title,
1788 'id': video_id,
1789 }
1790
c19f7764
JMF
1791 # Look for Bandcamp pages with custom domain
1792 mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
1793 if mobj is not None:
1794 burl = unescapeHTML(mobj.group(1))
09804265
JMF
1795 # Don't set the extractor because it can be a track url or an album
1796 return self.url_result(burl)
c19f7764 1797
f25571ff
PH
1798 # Look for embedded Vevo player
1799 mobj = re.search(
1800 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
1801 if mobj is not None:
1802 return self.url_result(mobj.group('url'))
796df3c6
S
1803
1804 # Look for embedded Viddler player
cb454b33
S
1805 mobj = re.search(
1806 r'<(?:iframe[^>]+?src|param[^>]+?value)=(["\'])(?P<url>(?:https?:)?//(?:www\.)?viddler\.com/(?:embed|player)/.+?)\1',
1807 webpage)
796df3c6
S
1808 if mobj is not None:
1809 return self.url_result(mobj.group('url'))
f25571ff 1810
3378d67a
S
1811 # Look for NYTimes player
1812 mobj = re.search(
1813 r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//graphics8\.nytimes\.com/bcvideo/[^/]+/iframe/embed\.html.+?)\1>',
1814 webpage)
1815 if mobj is not None:
1816 return self.url_result(mobj.group('url'))
1817
cefdf970
S
1818 # Look for Libsyn player
1819 mobj = re.search(
1820 r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//html5-player\.libsyn\.com/embed/.+?)\1', webpage)
1821 if mobj is not None:
1822 return self.url_result(mobj.group('url'))
1823
c0d0b01f 1824 # Look for Ooyala videos
8a37aa15 1825 mobj = (re.search(r'player\.ooyala\.com/[^"?]+[?#][^"]*?(?:embedCode|ec)=(?P<ec>[^"&]+)', webpage) or
f076b638 1826 re.search(r'OO\.Player\.create\([\'"].*?[\'"],\s*[\'"](?P<ec>.{32})[\'"]', webpage) or
edfcf7ab
YCH
1827 re.search(r'SBN\.VideoLinkset\.ooyala\([\'"](?P<ec>.{32})[\'"]\)', webpage) or
1828 re.search(r'data-ooyala-video-id\s*=\s*[\'"](?P<ec>.{32})[\'"]', webpage))
c0d0b01f 1829 if mobj is not None:
cce9d15d 1830 return OoyalaIE._build_url_result(smuggle_url(mobj.group('ec'), {'domain': url}))
c0d0b01f 1831
f076b638 1832 # Look for multiple Ooyala embeds on SBN network websites
1833 mobj = re.search(r'SBN\.VideoLinkset\.entryGroup\((\[.*?\])', webpage)
1834 if mobj is not None:
1835 embeds = self._parse_json(mobj.group(1), video_id, fatal=False)
1836 if embeds:
1837 return _playlist_from_matches(
cce9d15d 1838 embeds, getter=lambda v: OoyalaIE._url_for_embed_code(smuggle_url(v['provider_video_id'], {'domain': url})), ie='Ooyala')
f076b638 1839
aa94a6d3 1840 # Look for Aparat videos
48099643 1841 mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
aa94a6d3
PH
1842 if mobj is not None:
1843 return self.url_result(mobj.group(1), 'Aparat')
1844
c93c2ab1 1845 # Look for MPORA videos
c3f51436 1846 mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
c93c2ab1
PH
1847 if mobj is not None:
1848 return self.url_result(mobj.group(1), 'Mpora')
5f59ee79 1849
15c0e8e7 1850 # Look for embedded NovaMov-based player
8f89e687 1851 mobj = re.search(
8dfa187b 1852 r'''(?x)<(?:pagespeed_)?iframe[^>]+?src=(["\'])
15c0e8e7
S
1853 (?P<url>http://(?:(?:embed|www)\.)?
1854 (?:novamov\.com|
1855 nowvideo\.(?:ch|sx|eu|at|ag|co)|
1856 videoweed\.(?:es|com)|
1857 movshare\.(?:net|sx|ag)|
1858 divxstage\.(?:eu|net|ch|co|at|ag))
1859 /embed\.php.+?)\1''', webpage)
8f89e687 1860 if mobj is not None:
15c0e8e7 1861 return self.url_result(mobj.group('url'))
50f56607 1862
9834872b 1863 # Look for embedded Facebook player
fd6ca382
YCH
1864 facebook_url = FacebookIE._extract_url(webpage)
1865 if facebook_url is not None:
1866 return self.url_result(facebook_url, 'Facebook')
9834872b 1867
ca97a56e
S
1868 # Look for embedded VK player
1869 mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
1870 if mobj is not None:
1871 return self.url_result(mobj.group('url'), 'VK')
1872
33d4fdab
S
1873 # Look for embedded Odnoklassniki player
1874 mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:odnoklassniki|ok)\.ru/videoembed/.+?)\1', webpage)
1875 if mobj is not None:
1876 return self.url_result(mobj.group('url'), 'Odnoklassniki')
1877
0364fa8b
S
1878 # Look for embedded ivi player
1879 mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage)
1880 if mobj is not None:
1881 return self.url_result(mobj.group('url'), 'Ivi')
1882
db1f3888
PH
1883 # Look for embedded Huffington Post player
1884 mobj = re.search(
c3f51436 1885 r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
db1f3888
PH
1886 if mobj is not None:
1887 return self.url_result(mobj.group('url'), 'HuffPost')
1888
1b86cc41 1889 # Look for embed.ly
1890 mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
1891 if mobj is not None:
1892 return self.url_result(mobj.group('url'))
1893 mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
1894 if mobj is not None:
f7e6f7fa 1895 return self.url_result(compat_urllib_parse_unquote(mobj.group('url')))
1b86cc41 1896
60cc4dc4
PH
1897 # Look for funnyordie embed
1898 matches = re.findall(r'<iframe[^>]+?src="(https?://(?:www\.)?funnyordie\.com/embed/[^"]+)"', webpage)
1899 if matches:
ed2d6a19
PH
1900 return _playlist_from_matches(
1901 matches, getter=unescapeHTML, ie='FunnyOrDie')
60cc4dc4 1902
db546cf8
S
1903 # Look for BBC iPlayer embed
1904 matches = re.findall(r'setPlaylist\("(https?://www\.bbc\.co\.uk/iplayer/[^/]+/[\da-z]{8})"\)', webpage)
1905 if matches:
476eae0c 1906 return _playlist_from_matches(matches, ie='BBCCoUk')
db546cf8 1907
93d020dd
S
1908 # Look for embedded RUTV player
1909 rutv_url = RUTVIE._extract_url(webpage)
1910 if rutv_url:
1911 return self.url_result(rutv_url, 'RUTV')
1912
494f20cb 1913 # Look for embedded TVC player
b8599718
S
1914 tvc_url = TVCIE._extract_url(webpage)
1915 if tvc_url:
1916 return self.url_result(tvc_url, 'TVC')
494f20cb 1917
d40a3b5b
S
1918 # Look for embedded SportBox player
1919 sportbox_urls = SportBoxEmbedIE._extract_urls(webpage)
1920 if sportbox_urls:
1921 return _playlist_from_matches(sportbox_urls, ie='SportBoxEmbed')
1922
78e2b74b 1923 # Look for embedded PornHub player
65d161c4
S
1924 pornhub_url = PornHubIE._extract_url(webpage)
1925 if pornhub_url:
1926 return self.url_result(pornhub_url, 'PornHub')
1927
2bb5b6d0
S
1928 # Look for embedded XHamster player
1929 xhamster_urls = XHamsterEmbedIE._extract_urls(webpage)
1930 if xhamster_urls:
1931 return _playlist_from_matches(xhamster_urls, ie='XHamsterEmbed')
1932
2c9ca782
S
1933 # Look for embedded TNAFlixNetwork player
1934 tnaflix_urls = TNAFlixNetworkEmbedIE._extract_urls(webpage)
1935 if tnaflix_urls:
1936 return _playlist_from_matches(tnaflix_urls, ie=TNAFlixNetworkEmbedIE.ie_key())
1937
9872d311
S
1938 # Look for embedded Tvigle player
1939 mobj = re.search(
1940 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//cloud\.tvigle\.ru/video/.+?)\1', webpage)
1941 if mobj is not None:
1942 return self.url_result(mobj.group('url'), 'Tvigle')
1943
7e2ede98
JMF
1944 # Look for embedded TED player
1945 mobj = re.search(
d7cc31b6 1946 r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed(?:-ssl)?\.ted\.com/.+?)\1', webpage)
7e2ede98
JMF
1947 if mobj is not None:
1948 return self.url_result(mobj.group('url'), 'TED')
1949
5c386252 1950 # Look for embedded Ustream videos
1951 mobj = re.search(
1952 r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage)
1953 if mobj is not None:
1954 return self.url_result(mobj.group('url'), 'Ustream')
1955
893f8832
PH
1956 # Look for embedded arte.tv player
1957 mobj = re.search(
134c207e 1958 r'<(?:script|iframe) [^>]*?src="(?P<url>http://www\.arte\.tv/(?:playerv2/embed|arte_vp/index)[^"]+)"',
893f8832
PH
1959 webpage)
1960 if mobj is not None:
1961 return self.url_result(mobj.group('url'), 'ArteTVEmbed')
1962
cbd55ade
S
1963 # Look for embedded francetv player
1964 mobj = re.search(
1965 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?://)?embed\.francetv\.fr/\?ue=.+?)\1',
1966 webpage)
1967 if mobj is not None:
1968 return self.url_result(mobj.group('url'))
1969
cb3ac1c6
S
1970 # Look for embedded smotri.com player
1971 smotri_url = SmotriIE._extract_url(webpage)
1972 if smotri_url:
1973 return self.url_result(smotri_url, 'Smotri')
1974
e6c2d9ad 1975 # Look for embedded Myvi.ru player
6dd94d3a 1976 myvi_url = MyviIE._extract_url(webpage)
e6c2d9ad
S
1977 if myvi_url:
1978 return self.url_result(myvi_url)
1979
dfb1b146 1980 # Look for embedded soundcloud player
20991253 1981 mobj = re.search(
ac645ac7 1982 r'<iframe\s+(?:[a-zA-Z0-9_-]+="[^"]+"\s+)*src="(?P<url>https?://(?:w\.)?soundcloud\.com/player[^"]+)"',
20991253
PH
1983 webpage)
1984 if mobj is not None:
1985 url = unescapeHTML(mobj.group('url'))
1986 return self.url_result(url)
1987
c5cd249e 1988 # Look for embedded mtvservices player
46fde8a1
S
1989 mtvservices_url = MTVServicesEmbeddedIE._extract_url(webpage)
1990 if mtvservices_url:
1991 return self.url_result(mtvservices_url, ie='MTVServicesEmbedded')
c5cd249e 1992
49807b4a
S
1993 # Look for embedded yahoo player
1994 mobj = re.search(
1995 r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1',
1996 webpage)
1997 if mobj is not None:
1998 return self.url_result(mobj.group('url'), 'Yahoo')
1999
2ef6fcb5
PH
2000 # Look for embedded sbs.com.au player
2001 mobj = re.search(
e98b8e79
PH
2002 r'''(?x)
2003 (?:
2004 <meta\s+property="og:video"\s+content=|
2005 <iframe[^>]+?src=
2006 )
2007 (["\'])(?P<url>https?://(?:www\.)?sbs\.com\.au/ondemand/video/.+?)\1''',
2ef6fcb5
PH
2008 webpage)
2009 if mobj is not None:
2010 return self.url_result(mobj.group('url'), 'SBS')
2011
42bdd9d0
PH
2012 # Look for embedded Cinchcast player
2013 mobj = re.search(
2014 r'<iframe[^>]+?src=(["\'])(?P<url>https?://player\.cinchcast\.com/.+?)\1',
2015 webpage)
2016 if mobj is not None:
2017 return self.url_result(mobj.group('url'), 'Cinchcast')
2018
1a94ff68 2019 mobj = re.search(
5263cdfc 2020 r'<iframe[^>]+?src=(["\'])(?P<url>https?://m(?:lb)?\.mlb\.com/shared/video/embed/embed\.html\?.+?)\1',
1a94ff68 2021 webpage)
8001607e
YCH
2022 if not mobj:
2023 mobj = re.search(
2024 r'data-video-link=["\'](?P<url>http://m.mlb.com/video/[^"\']+)',
2025 webpage)
1a94ff68
S
2026 if mobj is not None:
2027 return self.url_result(mobj.group('url'), 'MLB')
2028
1419fafd 2029 mobj = re.search(
dd467d33 2030 r'<(?:iframe|script)[^>]+?src=(["\'])(?P<url>%s)\1' % CondeNastIE.EMBED_URL,
1419fafd
S
2031 webpage)
2032 if mobj is not None:
2033 return self.url_result(self._proto_relative_url(mobj.group('url'), scheme='http:'), 'CondeNast')
2034
af63fed7 2035 mobj = re.search(
78d3b3e2 2036 r'<iframe[^>]+src="(?P<url>https?://(?:new\.)?livestream\.com/[^"]+/player[^"]+)"',
af63fed7
PH
2037 webpage)
2038 if mobj is not None:
2039 return self.url_result(mobj.group('url'), 'Livestream')
2040
255fca5e
S
2041 # Look for Zapiks embed
2042 mobj = re.search(
2043 r'<iframe[^>]+src="(?P<url>https?://(?:www\.)?zapiks\.fr/index\.php\?.+?)"', webpage)
2044 if mobj is not None:
2045 return self.url_result(mobj.group('url'), 'Zapiks')
2046
e3216b82 2047 # Look for Kaltura embeds
c287f2bc
S
2048 kaltura_url = KalturaIE._extract_url(webpage)
2049 if kaltura_url:
2050 return self.url_result(smuggle_url(kaltura_url, {'source_url': url}), KalturaIE.ie_key())
e3216b82 2051
135c9c42 2052 # Look for Eagle.Platform embeds
06a96da1
S
2053 eagleplatform_url = EaglePlatformIE._extract_url(webpage)
2054 if eagleplatform_url:
2055 return self.url_result(eagleplatform_url, EaglePlatformIE.ie_key())
135c9c42 2056
d47ae7f6
S
2057 # Look for ClipYou (uses Eagle.Platform) embeds
2058 mobj = re.search(
2059 r'<iframe[^>]+src="https?://(?P<host>media\.clipyou\.ru)/index/player\?.*\brecord_id=(?P<id>\d+).*"', webpage)
2060 if mobj is not None:
2061 return self.url_result('eagleplatform:%(host)s:%(id)s' % mobj.groupdict(), 'EaglePlatform')
2062
f8388757 2063 # Look for Pladform embeds
45dad7ba
S
2064 pladform_url = PladformIE._extract_url(webpage)
2065 if pladform_url:
2066 return self.url_result(pladform_url)
f8388757 2067
ff18735c
S
2068 # Look for Videomore embeds
2069 videomore_url = VideomoreIE._extract_url(webpage)
2070 if videomore_url:
2071 return self.url_result(videomore_url)
2072
2dcc114f
S
2073 # Look for Playwire embeds
2074 mobj = re.search(
2075 r'<script[^>]+data-config=(["\'])(?P<url>(?:https?:)?//config\.playwire\.com/.+?)\1', webpage)
2076 if mobj is not None:
2077 return self.url_result(mobj.group('url'))
2078
ad320e9b
NJ
2079 # Look for 5min embeds
2080 mobj = re.search(
2081 r'<meta[^>]+property="og:video"[^>]+content="https?://embed\.5min\.com/(?P<id>[0-9]+)/?', webpage)
2082 if mobj is not None:
2083 return self.url_result('5min:%s' % mobj.group('id'), 'FiveMin')
2084
18153f1b
S
2085 # Look for Crooks and Liars embeds
2086 mobj = re.search(
2087 r'<(?:iframe[^>]+src|param[^>]+value)=(["\'])(?P<url>(?:https?:)?//embed\.crooksandliars\.com/(?:embed|v)/.+?)\1', webpage)
2088 if mobj is not None:
2089 return self.url_result(mobj.group('url'))
2090
a2edf2e7
YCH
2091 # Look for NBC Sports VPlayer embeds
2092 nbc_sports_url = NBCSportsVPlayerIE._extract_url(webpage)
2093 if nbc_sports_url:
2094 return self.url_result(nbc_sports_url, 'NBCSportsVPlayer')
2095
de3eb07e
YCH
2096 # Look for NBC News embeds
2097 nbc_news_embed_url = re.search(
2098 r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//www\.nbcnews\.com/widget/video-embed/[^"\']+)\1', webpage)
2099 if nbc_news_embed_url:
2100 return self.url_result(nbc_news_embed_url.group('url'), 'NBCNews')
2101
653789af 2102 # Look for Google Drive embeds
5b251628 2103 google_drive_url = GoogleDriveIE._extract_url(webpage)
653789af 2104 if google_drive_url:
2105 return self.url_result(google_drive_url, 'GoogleDrive')
2106
418c5cc3
YCH
2107 # Look for UDN embeds
2108 mobj = re.search(
c39fd7b1 2109 r'<iframe[^>]+src="(?P<url>%s)"' % UDNEmbedIE._PROTOCOL_RELATIVE_VALID_URL, webpage)
418c5cc3
YCH
2110 if mobj is not None:
2111 return self.url_result(
0a160363 2112 compat_urlparse.urljoin(url, mobj.group('url')), 'UDNEmbed')
418c5cc3 2113
2fe1b5bd
YCH
2114 # Look for Senate ISVP iframe
2115 senate_isvp_url = SenateISVPIE._search_iframe_url(webpage)
2116 if senate_isvp_url:
25c3a734 2117 return self.url_result(senate_isvp_url, 'SenateISVP')
2fe1b5bd 2118
756f574e
YCH
2119 # Look for Dailymotion Cloud videos
2120 dmcloud_url = DailymotionCloudIE._extract_dmcloud_url(webpage)
2121 if dmcloud_url:
2122 return self.url_result(dmcloud_url, 'DailymotionCloud')
2123
1ac1c4c2
S
2124 # Look for OnionStudios embeds
2125 onionstudios_url = OnionStudiosIE._extract_url(webpage)
2126 if onionstudios_url:
2127 return self.url_result(onionstudios_url)
2128
67167920 2129 # Look for ViewLift embeds
2130 viewlift_url = ViewLiftEmbedIE._extract_url(webpage)
2131 if viewlift_url:
2132 return self.url_result(viewlift_url)
eedd20ef 2133
7cb09524 2134 # Look for JWPlatform embeds
2135 jwplatform_url = JWPlatformIE._extract_url(webpage)
2136 if jwplatform_url:
2137 return self.url_result(jwplatform_url, 'JWPlatform')
2138
8ca31a0e 2139 # Look for ScreenwaveMedia embeds
efd712c6 2140 mobj = re.search(ScreenwaveMediaIE.EMBED_PATTERN, webpage)
8ca31a0e 2141 if mobj is not None:
efd712c6 2142 return self.url_result(unescapeHTML(mobj.group('url')), 'ScreenwaveMedia')
8ca31a0e 2143
aecfcd4e
S
2144 # Look for Digiteka embeds
2145 digiteka_url = DigitekaIE._extract_url(webpage)
2146 if digiteka_url:
2147 return self.url_result(self._proto_relative_url(digiteka_url), DigitekaIE.ie_key())
6aeba407 2148
1bf996fa 2149 # Look for Limelight embeds
2150 mobj = re.search(r'LimelightPlayer\.doLoad(Media|Channel|ChannelList)\(["\'](?P<id>[a-z0-9]{32})', webpage)
2151 if mobj:
2152 lm = {
2153 'Media': 'media',
2154 'Channel': 'channel',
2155 'ChannelList': 'channel_list',
2156 }
2157 return self.url_result('limelight:%s:%s' % (
2158 lm[mobj.group(1)], mobj.group(2)), 'Limelight%s' % mobj.group(1), mobj.group(2))
2159
a5158f38
YCH
2160 # Look for AdobeTVVideo embeds
2161 mobj = re.search(
2162 r'<iframe[^>]+src=[\'"]((?:https?:)?//video\.tv\.adobe\.com/v/\d+[^"]+)[\'"]',
2163 webpage)
2164 if mobj is not None:
2165 return self.url_result(
2166 self._proto_relative_url(unescapeHTML(mobj.group(1))),
2167 'AdobeTVVideo')
2168
088e1aac
YCH
2169 # Look for Vine embeds
2170 mobj = re.search(
2171 r'<iframe[^>]+src=[\'"]((?:https?:)?//(?:www\.)?vine\.co/v/[^/]+/embed/(?:simple|postcard))',
2172 webpage)
2173 if mobj is not None:
2174 return self.url_result(
2175 self._proto_relative_url(unescapeHTML(mobj.group(1))), 'Vine')
2176
5a51775a
YCH
2177 # Look for Instagram embeds
2178 instagram_embed_url = InstagramIE._extract_embed_url(webpage)
2179 if instagram_embed_url is not None:
11e60fca
S
2180 return self.url_result(
2181 self._proto_relative_url(instagram_embed_url), InstagramIE.ie_key())
5a51775a 2182
b8f67449
KM
2183 # Look for LiveLeak embeds
2184 liveleak_url = LiveLeakIE._extract_url(webpage)
2185 if liveleak_url:
2186 return self.url_result(liveleak_url, 'LiveLeak')
2187
5d39176f
S
2188 # Look for 3Q SDN embeds
2189 threeqsdn_url = ThreeQSDNIE._extract_url(webpage)
2190 if threeqsdn_url:
6f41b2bc
S
2191 return {
2192 '_type': 'url_transparent',
2193 'ie_key': ThreeQSDNIE.ie_key(),
2194 'url': self._proto_relative_url(threeqsdn_url),
2195 'title': video_title,
2196 'description': video_description,
2197 'thumbnail': video_thumbnail,
2198 'uploader': video_uploader,
2199 }
5d39176f 2200
0de168f7
S
2201 # Looking for http://schema.org/VideoObject
2202 json_ld = self._search_json_ld(
2203 webpage, video_id, default=None, expected_type='VideoObject')
2204 if json_ld and json_ld.get('url'):
2205 info_dict.update({
2206 'title': video_title or info_dict['title'],
2207 'description': video_description,
2208 'thumbnail': video_thumbnail,
2209 'age_limit': age_limit
2210 })
2211 info_dict.update(json_ld)
2212 return info_dict
2213
ced659bb 2214 def check_video(vurl):
a0f71985
PH
2215 if YoutubeIE.suitable(vurl):
2216 return True
ced659bb
S
2217 vpath = compat_urlparse.urlparse(vurl).path
2218 vext = determine_ext(vpath)
2219 return '.' in vpath and vext not in ('swf', 'png', 'jpg', 'srt', 'sbv', 'sub', 'vtt', 'ttml')
2220
2221 def filter_video(urls):
2222 return list(filter(check_video, urls))
2223
9b122384 2224 # Start with something easy: JW Player in SWFObject
ced659bb 2225 found = filter_video(re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage))
b30b8698 2226 if not found:
d981cef6 2227 # Look for gorilla-vid style embedding
ced659bb 2228 found = filter_video(re.findall(r'''(?sx)
c0292e8a
PH
2229 (?:
2230 jw_plugins|
2231 JWPlayerOptions|
2232 jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
2233 )
a0f71985
PH
2234 .*?
2235 ['"]?file['"]?\s*:\s*["\'](.*?)["\']''', webpage))
b30b8698 2236 if not found:
9b122384 2237 # Broaden the search a little bit
ced659bb 2238 found = filter_video(re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage))
b30b8698
PH
2239 if not found:
2240 # Broaden the findall a little bit: JWPlayer JS loader
ced659bb 2241 found = filter_video(re.findall(
54a9328b 2242 r'[^A-Za-z0-9]?(?:file|video_url)["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage))
4d805e06
PH
2243 if not found:
2244 # Flow player
ced659bb 2245 found = filter_video(re.findall(r'''(?xs)
4d805e06
PH
2246 flowplayer\("[^"]+",\s*
2247 \{[^}]+?\}\s*,
52585fd6 2248 \s*\{[^}]+? ["']?clip["']?\s*:\s*\{\s*
4d805e06 2249 ["']?url["']?\s*:\s*["']([^"']+)["']
ced659bb 2250 ''', webpage))
501f13fb
PH
2251 if not found:
2252 # Cinerama player
2253 found = re.findall(
2254 r"cinerama\.embedPlayer\(\s*\'[^']+\',\s*'([^']+)'", webpage)
b30b8698 2255 if not found:
9b122384 2256 # Try to find twitter cards info
371ddb14
S
2257 # twitter:player:stream should be checked before twitter:player since
2258 # it is expected to contain a raw stream (see
2259 # https://dev.twitter.com/cards/types/player#On_twitter.com_via_desktop_browser)
ced659bb
S
2260 found = filter_video(re.findall(
2261 r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage))
b30b8698 2262 if not found:
9b122384
PH
2263 # We look for Open Graph info:
2264 # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
b30b8698 2265 m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
9b122384
PH
2266 # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
2267 if m_video_type is not None:
ced659bb 2268 found = filter_video(re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage))
b30b8698 2269 if not found:
7fea7156 2270 # HTML5 video
12439dd5 2271 found = re.findall(r'(?s)<(?:video|audio)[^<]*(?:>.*?<source[^>]*)?\s+src=["\'](.*?)["\']', webpage)
b30b8698 2272 if not found:
ed9a25dd 2273 REDIRECT_REGEX = r'[0-9]{,2};\s*(?:URL|url)=\'?([^\'"]+)'
a5a45015 2274 found = re.search(
89ef304b 2275 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
ed9a25dd 2276 r'(?:[a-z-]+="[^"]+"\s+)*?content="%s' % REDIRECT_REGEX,
89ef304b 2277 webpage)
84f81016
S
2278 if not found:
2279 # Look also in Refresh HTTP header
2280 refresh_header = head_response.headers.get('Refresh')
2281 if refresh_header:
6c91a5a7
S
2282 # In python 2 response HTTP headers are bytestrings
2283 if sys.version_info < (3, 0) and isinstance(refresh_header, str):
2284 refresh_header = refresh_header.decode('iso-8859-1')
ed9a25dd 2285 found = re.search(REDIRECT_REGEX, refresh_header)
b30b8698 2286 if found:
b37317d8 2287 new_url = compat_urlparse.urljoin(url, unescapeHTML(found.group(1)))
89ef304b
PH
2288 self.report_following_redirect(new_url)
2289 return {
2290 '_type': 'url',
2291 'url': new_url,
2292 }
371ddb14
S
2293
2294 if not found:
2295 # twitter:player is a https URL to iframe player that may or may not
2296 # be supported by youtube-dl thus this is checked the very last (see
2297 # https://dev.twitter.com/cards/types/player#On_twitter.com_via_desktop_browser)
2298 embed_url = self._html_search_meta('twitter:player', webpage, default=None)
2299 if embed_url:
2300 return self.url_result(embed_url)
2301
b30b8698 2302 if not found:
416c7fcb 2303 raise UnsupportedError(url)
9b122384 2304
b30b8698 2305 entries = []
4a120778 2306 for video_url in orderedSet(found):
949b6497 2307 video_url = unescapeHTML(video_url)
6cc37c69 2308 video_url = video_url.replace('\\/', '/')
b30b8698 2309 video_url = compat_urlparse.urljoin(url, video_url)
f7e6f7fa 2310 video_id = compat_urllib_parse_unquote(os.path.basename(video_url))
9b122384 2311
b30b8698
PH
2312 # Sometimes, jwplayer extraction will result in a YouTube URL
2313 if YoutubeIE.suitable(video_url):
2314 entries.append(self.url_result(video_url, 'Youtube'))
2315 continue
9b122384 2316
b30b8698
PH
2317 # here's a fun little line of code for you:
2318 video_id = os.path.splitext(video_id)[0]
fc9713a1 2319
28602e74
YCH
2320 entry_info_dict = {
2321 'id': video_id,
2322 'uploader': video_uploader,
2323 'title': video_title,
2324 'age_limit': age_limit,
2325 }
2326
729accb4
S
2327 ext = determine_ext(video_url)
2328 if ext == 'smil':
28602e74 2329 entry_info_dict['formats'] = self._extract_smil_formats(video_url, video_id)
729accb4
S
2330 elif ext == 'xspf':
2331 return self.playlist_result(self._extract_xspf_playlist(video_url, video_id), video_id)
750b9ff0
YCH
2332 elif ext == 'm3u8':
2333 entry_info_dict['formats'] = self._extract_m3u8_formats(video_url, video_id, ext='mp4')
79a35085
S
2334 elif ext == 'mpd':
2335 entry_info_dict['formats'] = self._extract_mpd_formats(video_url, video_id)
3f2f4a94
S
2336 elif ext == 'f4m':
2337 entry_info_dict['formats'] = self._extract_f4m_formats(video_url, video_id)
d6fd958c 2338 else:
28602e74
YCH
2339 entry_info_dict['url'] = video_url
2340
19dbaeec
S
2341 if entry_info_dict.get('formats'):
2342 self._sort_formats(entry_info_dict['formats'])
2343
28602e74 2344 entries.append(entry_info_dict)
b30b8698
PH
2345
2346 if len(entries) == 1:
669f0e7c 2347 return entries[0]
b30b8698
PH
2348 else:
2349 for num, e in enumerate(entries, start=1):
13d8fbef
JMF
2350 # 'url' results don't have a title
2351 if e.get('title') is not None:
2352 e['title'] = '%s (%d)' % (e['title'], num)
b30b8698
PH
2353 return {
2354 '_type': 'playlist',
2355 'entries': entries,
2356 }