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