]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/generic.py
[generic] Automatic detection of flow player and age_limit (Fixes #3576)
[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
7
8from .common import InfoExtractor
fc9713a1 9from .youtube import YoutubeIE
9b122384
PH
10from ..utils import (
11 compat_urllib_error,
12 compat_urllib_parse,
13 compat_urllib_request,
a5caba1e 14 compat_urlparse,
f7300c5c 15 compat_xml_parse_error,
9b122384
PH
16
17 ExtractorError,
c8e9a235 18 float_or_none,
aa94a6d3 19 HEADRequest,
ed2d6a19 20 orderedSet,
bcf89ce6 21 parse_xml,
9d4660ca
PH
22 smuggle_url,
23 unescapeHTML,
42393ce2 24 unified_strdate,
4d54ef20 25 unsmuggle_url,
42393ce2 26 url_basename,
9b122384 27)
cfe50f04 28from .brightcove import BrightcoveIE
c0d0b01f 29from .ooyala import OoyalaIE
93d020dd 30from .rutv import RUTVIE
cb3ac1c6 31from .smotri import SmotriIE
9b122384 32
0838239e 33
9b122384 34class GenericIE(InfoExtractor):
79649588 35 IE_DESC = 'Generic downloader that works on some sites'
9b122384 36 _VALID_URL = r'.*'
79649588 37 IE_NAME = 'generic'
cfe50f04
JMF
38 _TESTS = [
39 {
79649588 40 'url': 'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html',
d360a146 41 'md5': '85b90ccc9d73b4acd9138d3af4c27f89',
79649588 42 'info_dict': {
d360a146
S
43 'id': '13601338388002',
44 'ext': 'mp4',
79649588
PH
45 'uploader': 'www.hodiho.fr',
46 'title': 'R\u00e9gis plante sa Jeep',
cfe50f04
JMF
47 }
48 },
c19f7764
JMF
49 # bandcamp page with custom domain
50 {
79649588
PH
51 'add_ie': ['Bandcamp'],
52 'url': 'http://bronyrock.com/track/the-pony-mash',
79649588 53 'info_dict': {
fd50bf62
S
54 'id': '3235767654',
55 'ext': 'mp3',
79649588
PH
56 'title': 'The Pony Mash',
57 'uploader': 'M_Pallante',
c19f7764 58 },
79649588 59 'skip': 'There is a limit of 200 free downloads / month for the test song',
c19f7764 60 },
eeb165e6 61 # embedded brightcove video
dd5bcdc4
JMF
62 # it also tests brightcove videos that need to set the 'Referer' in the
63 # http requests
eeb165e6 64 {
79649588
PH
65 'add_ie': ['Brightcove'],
66 'url': 'http://www.bfmtv.com/video/bfmbusiness/cours-bourse/cours-bourse-l-analyse-technique-154522/',
67 'info_dict': {
68 'id': '2765128793001',
69 'ext': 'mp4',
70 'title': 'Le cours de bourse : l’analyse technique',
71 'description': 'md5:7e9ad046e968cb2d1114004aba466fd9',
72 'uploader': 'BFM BUSINESS',
eeb165e6 73 },
79649588
PH
74 'params': {
75 'skip_download': True,
eeb165e6
JMF
76 },
77 },
17ab4d3b
PH
78 {
79 # https://github.com/rg3/youtube-dl/issues/2253
80 'url': 'http://bcove.me/i6nfkrc3',
17ab4d3b
PH
81 'md5': '0ba9446db037002366bab3b3eb30c88c',
82 'info_dict': {
fd50bf62
S
83 'id': '3101154703001',
84 'ext': 'mp4',
17ab4d3b
PH
85 'title': 'Still no power',
86 'uploader': 'thestar.com',
87 '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.',
88 },
89 'add_ie': ['Brightcove'],
90 },
0479c625
S
91 {
92 'url': 'http://www.championat.com/video/football/v/87/87499.html',
93 'md5': 'fb973ecf6e4a78a67453647444222983',
94 'info_dict': {
95 'id': '3414141473001',
96 'ext': 'mp4',
97 'title': 'Видео. Удаление Дзагоева (ЦСКА)',
98 'description': 'Онлайн-трансляция матча ЦСКА - "Волга"',
99 'uploader': 'Championat',
100 },
101 },
42393ce2
PH
102 # Direct link to a video
103 {
79649588 104 'url': 'http://media.w3.org/2010/05/sintel/trailer.mp4',
79649588
PH
105 'md5': '67d406c2bcb6af27fa886f31aa934bbe',
106 'info_dict': {
107 'id': 'trailer',
89ef304b 108 'ext': 'mp4',
79649588
PH
109 'title': 'trailer',
110 'upload_date': '20100513',
42393ce2 111 }
c0d0b01f
JMF
112 },
113 # ooyala video
114 {
79649588
PH
115 'url': 'http://www.rollingstone.com/music/videos/norwegian-dj-cashmere-cat-goes-spartan-on-with-me-premiere-20131219',
116 'md5': '5644c6ca5d5782c1d0d350dad9bd840c',
117 'info_dict': {
118 'id': 'BwY2RxaTrTkslxOfcan0UCf0YqyvWysJ',
119 'ext': 'mp4',
3486df38 120 'title': '2cc213299525360.mov', # that's what we get
c0d0b01f
JMF
121 },
122 },
89ef304b
PH
123 # google redirect
124 {
125 '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',
126 'info_dict': {
127 'id': 'cmQHVoWB5FY',
128 'ext': 'mp4',
129 'upload_date': '20130224',
130 'uploader_id': 'TheVerge',
131 'description': 'Chris Ziegler takes a look at the Alcatel OneTouch Fire and the ZTE Open; two of the first Firefox OS handsets to be officially announced.',
132 'uploader': 'The Verge',
133 'title': 'First Firefox OS phones side-by-side',
134 },
135 'params': {
136 'skip_download': False,
137 }
f55a1f0a 138 },
1b86cc41 139 # embed.ly video
140 {
141 'url': 'http://www.tested.com/science/weird/460206-tested-grinding-coffee-2000-frames-second/',
142 'info_dict': {
143 'id': '9ODmcdjQcHQ',
144 'ext': 'mp4',
0a5bce56
PH
145 'title': 'Tested: Grinding Coffee at 2000 Frames Per Second',
146 'upload_date': '20140225',
147 'description': 'md5:06a40fbf30b220468f1e0957c0f558ff',
148 'uploader': 'Tested',
149 'uploader_id': 'testedcom',
1b86cc41 150 },
151 # No need to test YoutubeIE here
152 'params': {
153 'skip_download': True,
154 },
155 },
60cc4dc4
PH
156 # funnyordie embed
157 {
158 'url': 'http://www.theguardian.com/world/2014/mar/11/obama-zach-galifianakis-between-two-ferns',
159 'md5': '7cf780be104d40fea7bae52eed4a470e',
160 'info_dict': {
161 'id': '18e820ec3f',
162 'ext': 'mp4',
163 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama',
164 'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',
93d020dd 165 },
60cc4dc4 166 },
93d020dd
S
167 # RUTV embed
168 {
169 'url': 'http://www.rg.ru/2014/03/15/reg-dfo/anklav-anons.html',
170 'info_dict': {
171 'id': '776940',
172 'ext': 'mp4',
173 'title': 'Охотское море стало целиком российским',
174 'description': 'md5:5ed62483b14663e2a95ebbe115eb8f43',
175 },
176 'params': {
177 # m3u8 download
178 'skip_download': True,
179 },
aab74fa1
PH
180 },
181 # Embedded TED video
182 {
183 'url': 'http://en.support.wordpress.com/videos/ted-talks/',
184 'md5': 'deeeabcc1085eb2ba205474e7235a3d5',
185 'info_dict': {
186 'id': '981',
187 'ext': 'mp4',
188 'title': 'My web playroom',
189 'uploader': 'Ze Frank',
190 'description': 'md5:ddb2a40ecd6b6a147e400e535874947b',
191 }
60cc4dc4 192 },
5c386252 193 # Embeded Ustream video
194 {
195 'url': 'http://www.american.edu/spa/pti/nsa-privacy-janus-2014.cfm',
196 'md5': '27b99cdb639c9b12a79bca876a073417',
197 'info_dict': {
ca6aada4 198 'id': '45734260',
199 'ext': 'flv',
200 'uploader': 'AU SPA: The NSA and Privacy',
5c386252 201 'title': 'NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman'
202 }
203 },
d95e35d6
S
204 # nowvideo embed hidden behind percent encoding
205 {
206 'url': 'http://www.waoanime.tv/the-super-dimension-fortress-macross-episode-1/',
207 'md5': '2baf4ddd70f697d94b1c18cf796d5107',
208 'info_dict': {
209 'id': '06e53103ca9aa',
210 'ext': 'flv',
211 'title': 'Macross Episode 001 Watch Macross Episode 001 onl',
212 'description': 'No description',
213 },
0f2a2ba1 214 },
893f8832
PH
215 # arte embed
216 {
217 'url': 'http://www.tv-replay.fr/redirection/20-03-14/x-enius-arte-10753389.html',
218 'md5': '7653032cbb25bf6c80d80f217055fa43',
219 'info_dict': {
220 'id': '048195-004_PLUS7-F',
221 'ext': 'flv',
222 'title': 'X:enius',
223 'description': 'md5:d5fdf32ef6613cdbfd516ae658abf168',
224 'upload_date': '20140320',
225 },
226 'params': {
227 'skip_download': 'Requires rtmpdump'
228 }
229 },
cb3ac1c6
S
230 # smotri embed
231 {
232 'url': 'http://rbctv.rbc.ru/archive/news/562949990879132.shtml',
233 'md5': 'ec40048448e9284c9a1de77bb188108b',
234 'info_dict': {
235 'id': 'v27008541fad',
236 'ext': 'mp4',
237 'title': 'Крым и Севастополь вошли в состав России',
238 'description': 'md5:fae01b61f68984c7bd2fa741e11c3175',
239 'duration': 900,
240 'upload_date': '20140318',
241 'uploader': 'rbctv_2012_4',
242 'uploader_id': 'rbctv_2012_4',
243 },
244 },
fa35cdad
PH
245 # Condé Nast embed
246 {
247 'url': 'http://www.wired.com/2014/04/honda-asimo/',
248 'md5': 'ba0dfe966fa007657bd1443ee672db0f',
249 'info_dict': {
250 'id': '53501be369702d3275860000',
251 'ext': 'mp4',
252 'title': 'Honda’s New Asimo Robot Is More Human Than Ever',
253 }
ebd3c7b3
PH
254 },
255 # Dailymotion embed
256 {
257 'url': 'http://www.spi0n.com/zap-spi0n-com-n216/',
258 'md5': '441aeeb82eb72c422c7f14ec533999cd',
259 'info_dict': {
260 'id': 'k2mm4bCdJ6CQ2i7c8o2',
261 'ext': 'mp4',
262 'title': 'Le Zap de Spi0n n°216 - Zapping du Web',
263 'uploader': 'Spi0n',
264 },
265 'add_ie': ['Dailymotion'],
2b88feed
PH
266 },
267 # YouTube embed
268 {
269 'url': 'http://www.badzine.de/ansicht/datum/2014/06/09/so-funktioniert-die-neue-englische-badminton-liga.html',
270 'info_dict': {
271 'id': 'FXRb4ykk4S0',
272 'ext': 'mp4',
273 'title': 'The NBL Auction 2014',
274 'uploader': 'BADMINTON England',
275 'uploader_id': 'BADMINTONEvents',
276 'upload_date': '20140603',
277 'description': 'md5:9ef128a69f1e262a700ed83edb163a73',
278 },
279 'add_ie': ['Youtube'],
280 'params': {
281 'skip_download': True,
282 }
283 },
c5cd249e
JMF
284 # MTVSercices embed
285 {
286 'url': 'http://www.gametrailers.com/news-post/76093/north-america-europe-is-getting-that-mario-kart-8-mercedes-dlc-too',
287 'md5': '35727f82f58c76d996fc188f9755b0d5',
288 'info_dict': {
289 'id': '0306a69b-8adf-4fb5-aace-75f8e8cbfca9',
290 'ext': 'mp4',
291 'title': 'Review',
292 'description': 'Mario\'s life in the fast lane has never looked so good.',
293 },
294 },
61013473 295 # YouTube embed via <data-embed-url="">
296 {
297 'url': 'https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM',
61013473 298 'info_dict': {
ed2d6a19 299 'id': 'jpSGZsgga_I',
61013473 300 'ext': 'mp4',
ed2d6a19
PH
301 'title': 'Asphalt 8: Airborne - Launch Trailer',
302 'uploader': 'Gameloft',
303 'uploader_id': 'gameloft',
304 'upload_date': '20130821',
305 'description': 'md5:87bd95f13d8be3e7da87a5f2c443106a',
306 },
307 'params': {
308 'skip_download': True,
61013473 309 }
c8e9a235
PH
310 },
311 # Camtasia studio
312 {
313 'url': 'http://www.ll.mit.edu/workshops/education/videocourses/antennas/lecture1/video/',
314 'playlist': [{
315 'md5': '0c5e352edabf715d762b0ad4e6d9ee67',
316 'info_dict': {
317 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
318 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - video1',
319 'ext': 'flv',
320 'duration': 2235.90,
321 }
322 }, {
323 'md5': '10e4bb3aaca9fd630e273ff92d9f3c63',
324 'info_dict': {
325 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final_PIP',
326 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - pip',
327 'ext': 'flv',
328 'duration': 2235.93,
329 }
330 }],
331 'info_dict': {
332 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
333 }
4d805e06
PH
334 },
335 # Flowplayer
336 {
337 'url': 'http://www.handjobhub.com/video/busty-blonde-siri-tit-fuck-while-wank-6313.html',
338 'md5': '9d65602bf31c6e20014319c7d07fba27',
339 'info_dict': {
340 'id': '5123ea6d5e5a7',
341 'ext': 'mp4',
342 'age_limit': 18,
343 'uploader': 'www.handjobhub.com',
344 'title': 'Busty Blonde Siri Tit Fuck While Wank at Handjob Hub',
345 }
fa35cdad 346 }
cfe50f04 347 ]
9b122384
PH
348
349 def report_download_webpage(self, video_id):
350 """Report webpage download."""
351 if not self._downloader.params.get('test', False):
79649588 352 self._downloader.report_warning('Falling back on generic information extractor.')
9b122384
PH
353 super(GenericIE, self).report_download_webpage(video_id)
354
355 def report_following_redirect(self, new_url):
356 """Report information extraction."""
79649588 357 self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
9b122384 358
42393ce2 359 def _send_head(self, url):
9b122384 360 """Check if it is a redirect, like url shorteners, in case return the new url."""
9b122384
PH
361
362 class HEADRedirectHandler(compat_urllib_request.HTTPRedirectHandler):
363 """
364 Subclass the HTTPRedirectHandler to make it use our
aa94a6d3 365 HEADRequest also on the redirected URL
9b122384
PH
366 """
367 def redirect_request(self, req, fp, code, msg, headers, newurl):
368 if code in (301, 302, 303, 307):
369 newurl = newurl.replace(' ', '%20')
370 newheaders = dict((k,v) for k,v in req.headers.items()
371 if k.lower() not in ("content-length", "content-type"))
ecbe1ad2
JMF
372 try:
373 # This function was deprecated in python 3.3 and removed in 3.4
374 origin_req_host = req.get_origin_req_host()
375 except AttributeError:
376 origin_req_host = req.origin_req_host
aa94a6d3 377 return HEADRequest(newurl,
9b122384 378 headers=newheaders,
ecbe1ad2 379 origin_req_host=origin_req_host,
9b122384
PH
380 unverifiable=True)
381 else:
382 raise compat_urllib_error.HTTPError(req.get_full_url(), code, msg, headers, fp)
383
384 class HTTPMethodFallback(compat_urllib_request.BaseHandler):
385 """
386 Fallback to GET if HEAD is not allowed (405 HTTP error)
387 """
388 def http_error_405(self, req, fp, code, msg, headers):
389 fp.read()
390 fp.close()
391
392 newheaders = dict((k,v) for k,v in req.headers.items()
393 if k.lower() not in ("content-length", "content-type"))
394 return self.parent.open(compat_urllib_request.Request(req.get_full_url(),
395 headers=newheaders,
396 origin_req_host=req.get_origin_req_host(),
397 unverifiable=True))
398
399 # Build our opener
400 opener = compat_urllib_request.OpenerDirector()
401 for handler in [compat_urllib_request.HTTPHandler, compat_urllib_request.HTTPDefaultErrorHandler,
402 HTTPMethodFallback, HEADRedirectHandler,
403 compat_urllib_request.HTTPErrorProcessor, compat_urllib_request.HTTPSHandler]:
404 opener.add_handler(handler())
405
aa94a6d3 406 response = opener.open(HEADRequest(url))
9b122384 407 if response is None:
79649588 408 raise ExtractorError('Invalid URL protocol')
42393ce2 409 return response
9b122384 410
4fc946b5
PH
411 def _extract_rss(self, url, video_id, doc):
412 playlist_title = doc.find('./channel/title').text
413 playlist_desc_el = doc.find('./channel/description')
414 playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
415
416 entries = [{
417 '_type': 'url',
418 'url': e.find('link').text,
419 'title': e.find('title').text,
420 } for e in doc.findall('./channel/item')]
421
422 return {
423 '_type': 'playlist',
424 'id': url,
425 'title': playlist_title,
426 'description': playlist_desc,
427 'entries': entries,
428 }
429
c8e9a235
PH
430 def _extract_camtasia(self, url, video_id, webpage):
431 """ Returns None if no camtasia video can be found. """
432
433 camtasia_cfg = self._search_regex(
434 r'fo\.addVariable\(\s*"csConfigFile",\s*"([^"]+)"\s*\);',
435 webpage, 'camtasia configuration file', default=None)
436 if camtasia_cfg is None:
437 return None
438
439 title = self._html_search_meta('DC.title', webpage, fatal=True)
440
441 camtasia_url = compat_urlparse.urljoin(url, camtasia_cfg)
442 camtasia_cfg = self._download_xml(
443 camtasia_url, video_id,
444 note='Downloading camtasia configuration',
445 errnote='Failed to download camtasia configuration')
446 fileset_node = camtasia_cfg.find('./playlist/array/fileset')
447
448 entries = []
449 for n in fileset_node.getchildren():
450 url_n = n.find('./uri')
451 if url_n is None:
452 continue
453
454 entries.append({
455 'id': os.path.splitext(url_n.text.rpartition('/')[2])[0],
456 'title': '%s - %s' % (title, n.tag),
457 'url': compat_urlparse.urljoin(url, url_n.text),
458 'duration': float_or_none(n.find('./duration').text),
459 })
460
461 return {
462 '_type': 'playlist',
463 'entries': entries,
464 'title': title,
465 }
466
9b122384 467 def _real_extract(self, url):
ebd3c7b3
PH
468 if url.startswith('//'):
469 return {
470 '_type': 'url',
20991253 471 'url': self.http_scheme() + url,
ebd3c7b3
PH
472 }
473
a7130543
JMF
474 parsed_url = compat_urlparse.urlparse(url)
475 if not parsed_url.scheme:
04b4d394
PH
476 default_search = self._downloader.params.get('default_search')
477 if default_search is None:
1f7ccb90 478 default_search = 'fixup_error'
04b4d394 479
1f7ccb90 480 if default_search in ('auto', 'auto_warning', 'fixup_error'):
04b4d394
PH
481 if '/' in url:
482 self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
483 return self.url_result('http://' + url)
1f7ccb90 484 elif default_search != 'fixup_error':
9c1fc022 485 if default_search == 'auto_warning':
0e67ab0d
PH
486 if re.match(r'^(?:url|URL)$', url):
487 raise ExtractorError(
488 'Invalid URL: %r . Call youtube-dl like this: youtube-dl -v "https://www.youtube.com/watch?v=BaW_jenozKc" ' % url,
489 expected=True)
490 else:
491 self._downloader.report_warning(
7571c02c 492 'Falling back to youtube search for %s . Set --default-search "auto" to suppress this warning.' % url)
04b4d394 493 return self.url_result('ytsearch:' + url)
1f7ccb90
PH
494
495 if default_search in ('error', 'fixup_error'):
7571c02c
PH
496 raise ExtractorError(
497 ('%r is not a valid URL. '
eef4a7a3 498 'Set --default-search "ytsearch" (or run youtube-dl "ytsearch:%s" ) to search YouTube'
7571c02c 499 ) % (url, url), expected=True)
04b4d394
PH
500 else:
501 assert ':' in default_search
502 return self.url_result(default_search + url)
4d54ef20
PH
503
504 url, smuggled_data = unsmuggle_url(url)
505 force_videoid = None
506 if smuggled_data and 'force_videoid' in smuggled_data:
507 force_videoid = smuggled_data['force_videoid']
508 video_id = force_videoid
509 else:
510 video_id = os.path.splitext(url.rstrip('/').split('/')[-1])[0]
a7130543 511
79649588 512 self.to_screen('%s: Requesting header' % video_id)
c1d1facd 513
30934689 514 try:
42393ce2
PH
515 response = self._send_head(url)
516
517 # Check for redirect
518 new_url = response.geturl()
519 if url != new_url:
520 self.report_following_redirect(new_url)
4d54ef20
PH
521 if force_videoid:
522 new_url = smuggle_url(
523 new_url, {'force_videoid': force_videoid})
cecaaf3f 524 return self.url_result(new_url)
42393ce2
PH
525
526 # Check for direct link to a video
527 content_type = response.headers.get('Content-Type', '')
3e785145 528 m = re.match(r'^(?P<type>audio|video|application(?=/ogg$))/(?P<format_id>.+)$', content_type)
42393ce2
PH
529 if m:
530 upload_date = response.headers.get('Last-Modified')
531 if upload_date:
532 upload_date = unified_strdate(upload_date)
42393ce2
PH
533 return {
534 'id': video_id,
535 'title': os.path.splitext(url_basename(url))[0],
536 'formats': [{
537 'format_id': m.group('format_id'),
538 'url': url,
79649588 539 'vcodec': 'none' if m.group('type') == 'audio' else None
42393ce2
PH
540 }],
541 'upload_date': upload_date,
542 }
543
30934689
PH
544 except compat_urllib_error.HTTPError:
545 # This may be a stupid server that doesn't like HEAD, our UA, or so
546 pass
9b122384 547
9b122384
PH
548 try:
549 webpage = self._download_webpage(url, video_id)
550 except ValueError:
551 # since this is the last-resort InfoExtractor, if
552 # this error is thrown, it'll be thrown here
79649588 553 raise ExtractorError('Failed to download URL: %s' % url)
9b122384
PH
554
555 self.report_extraction(video_id)
887c6acd 556
4fc946b5
PH
557 # Is it an RSS feed?
558 try:
bcf89ce6 559 doc = parse_xml(webpage)
4fc946b5
PH
560 if doc.tag == 'rss':
561 return self._extract_rss(url, video_id, doc)
f7300c5c 562 except compat_xml_parse_error:
4fc946b5
PH
563 pass
564
c8e9a235
PH
565 # Is it a Camtasia project?
566 camtasia_res = self._extract_camtasia(url, video_id, webpage)
567 if camtasia_res is not None:
568 return camtasia_res
569
14390730
S
570 # Sometimes embedded video player is hidden behind percent encoding
571 # (e.g. https://github.com/rg3/youtube-dl/issues/2448)
572 # Unescaping the whole page allows to handle those cases in a generic way
1f7659db
S
573 webpage = compat_urllib_parse.unquote(webpage)
574
887c6acd
PH
575 # it's tempting to parse this further, but you would
576 # have to take into account all the variations like
577 # Video Title - Site Name
578 # Site Name | Video Title
579 # Video Title - Tagline | Site Name
580 # and so on and so forth; it's just not practical
ef4fd848 581 video_title = self._html_search_regex(
79649588
PH
582 r'(?s)<title>(.*?)</title>', webpage, 'video title',
583 default='video')
ef4fd848 584
4d805e06
PH
585 # Try to detect age limit automatically
586 age_limit = self._rta_search(webpage)
587 # And then there are the jokers who advertise that they use RTA,
588 # but actually don't.
589 AGE_LIMIT_MARKERS = [
590 r'Proudly Labeled <a href="http://www.rtalabel.org/" title="Restricted to Adults">RTA</a>',
591 ]
592 if any(re.search(marker, webpage) for marker in AGE_LIMIT_MARKERS):
593 age_limit = 18
594
ef4fd848
PH
595 # video uploader is domain name
596 video_uploader = self._search_regex(
79649588 597 r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
887c6acd 598
ed2d6a19
PH
599 # Helper method
600 def _playlist_from_matches(matches, getter, ie=None):
601 urlrs = orderedSet(self.url_result(getter(m), ie) for m in matches)
602 return self.playlist_result(
603 urlrs, playlist_id=video_id, playlist_title=video_title)
604
627a91a9 605 # Look for BrightCove:
99877772
PH
606 bc_urls = BrightcoveIE._extract_brightcove_urls(webpage)
607 if bc_urls:
79649588 608 self.to_screen('Brightcove video detected.')
99877772
PH
609 entries = [{
610 '_type': 'url',
611 'url': smuggle_url(bc_url, {'Referer': url}),
612 'ie_key': 'Brightcove'
613 } for bc_url in bc_urls]
614
615 return {
616 '_type': 'playlist',
617 'title': video_title,
618 'id': video_id,
619 'entries': entries,
620 }
cfe50f04 621
7115ca84 622 # Look for embedded (iframe) Vimeo player
9d4660ca 623 mobj = re.search(
15fd51b3 624 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//player\.vimeo\.com/video/.+?)\1', webpage)
9d4660ca 625 if mobj:
15fd51b3 626 player_url = unescapeHTML(mobj.group('url'))
9d4660ca
PH
627 surl = smuggle_url(player_url, {'Referer': url})
628 return self.url_result(surl, 'Vimeo')
629
7115ca84
PH
630 # Look for embedded (swf embed) Vimeo player
631 mobj = re.search(
c3f51436 632 r'<embed[^>]+?src="(https?://(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
7115ca84
PH
633 if mobj:
634 return self.url_result(mobj.group(1), 'Vimeo')
635
53c1d3ef 636 # Look for embedded YouTube player
1f9da904 637 matches = re.findall(r'''(?x)
2b88feed
PH
638 (?:
639 <iframe[^>]+?src=|
c71dfccc 640 data-video-url=|
2b88feed
PH
641 <embed[^>]+?src=|
642 embedSWF\(?:\s*
643 )
644 (["\'])
645 (?P<url>(?:https?:)?//(?:www\.)?youtube\.com/
1f9da904
PH
646 (?:embed|v)/.+?)
647 \1''', webpage)
887c6acd 648 if matches:
ed2d6a19
PH
649 return _playlist_from_matches(
650 matches, lambda m: unescapeHTML(m[1]), ie='Youtube')
53c1d3ef 651
355e4fd0
PH
652 # Look for embedded Dailymotion player
653 matches = re.findall(
ef4fd848 654 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/embed/video/.+?)\1', webpage)
355e4fd0 655 if matches:
ed2d6a19
PH
656 return _playlist_from_matches(
657 matches, lambda m: unescapeHTML(m[1]))
355e4fd0 658
ef4fd848
PH
659 # Look for embedded Wistia player
660 match = re.search(
661 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
662 if match:
663 return {
664 '_type': 'url_transparent',
665 'url': unescapeHTML(match.group('url')),
666 'ie_key': 'Wistia',
667 'uploader': video_uploader,
668 'title': video_title,
669 'id': video_id,
670 }
671
ee3e63e4 672 # Look for embedded blip.tv player
19dab5e6 673 mobj = re.search(r'<meta\s[^>]*https?://api\.blip\.tv/\w+/redirect/\w+/(\d+)', webpage)
ee3e63e4 674 if mobj:
19dab5e6 675 return self.url_result('http://blip.tv/a/a-'+mobj.group(1), 'BlipTV')
1f8b6af7 676 mobj = re.search(r'<(?:iframe|embed|object)\s[^>]*(https?://(?:\w+\.)?blip\.tv/(?:play/|api\.swf#)[a-zA-Z0-9_]+)', webpage)
ee3e63e4 677 if mobj:
19dab5e6 678 return self.url_result(mobj.group(1), 'BlipTV')
ee3e63e4 679
fa35cdad
PH
680 # Look for embedded condenast player
681 matches = re.findall(
682 r'<iframe\s+(?:[a-zA-Z-]+="[^"]+"\s+)*?src="(https?://player\.cnevids\.com/embed/[^"]+")',
683 webpage)
684 if matches:
685 return {
686 '_type': 'playlist',
687 'entries': [{
688 '_type': 'url',
689 'ie_key': 'CondeNast',
690 'url': ma,
691 } for ma in matches],
692 'title': video_title,
693 'id': video_id,
694 }
695
c19f7764
JMF
696 # Look for Bandcamp pages with custom domain
697 mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
698 if mobj is not None:
699 burl = unescapeHTML(mobj.group(1))
09804265
JMF
700 # Don't set the extractor because it can be a track url or an album
701 return self.url_result(burl)
c19f7764 702
f25571ff
PH
703 # Look for embedded Vevo player
704 mobj = re.search(
705 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
706 if mobj is not None:
707 return self.url_result(mobj.group('url'))
708
c0d0b01f 709 # Look for Ooyala videos
750f9020
JMF
710 mobj = (re.search(r'player.ooyala.com/[^"?]+\?[^"]*?(?:embedCode|ec)=(?P<ec>[^"&]+)', webpage) or
711 re.search(r'OO.Player.create\([\'"].*?[\'"],\s*[\'"](?P<ec>.{32})[\'"]', webpage))
c0d0b01f 712 if mobj is not None:
750f9020 713 return OoyalaIE._build_url_result(mobj.group('ec'))
c0d0b01f 714
aa94a6d3 715 # Look for Aparat videos
48099643 716 mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
aa94a6d3
PH
717 if mobj is not None:
718 return self.url_result(mobj.group(1), 'Aparat')
719
c93c2ab1 720 # Look for MPORA videos
c3f51436 721 mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
c93c2ab1
PH
722 if mobj is not None:
723 return self.url_result(mobj.group(1), 'Mpora')
5f59ee79 724
15c0e8e7 725 # Look for embedded NovaMov-based player
8f89e687 726 mobj = re.search(
8dfa187b 727 r'''(?x)<(?:pagespeed_)?iframe[^>]+?src=(["\'])
15c0e8e7
S
728 (?P<url>http://(?:(?:embed|www)\.)?
729 (?:novamov\.com|
730 nowvideo\.(?:ch|sx|eu|at|ag|co)|
731 videoweed\.(?:es|com)|
732 movshare\.(?:net|sx|ag)|
733 divxstage\.(?:eu|net|ch|co|at|ag))
734 /embed\.php.+?)\1''', webpage)
8f89e687 735 if mobj is not None:
15c0e8e7 736 return self.url_result(mobj.group('url'))
50f56607 737
9834872b
PH
738 # Look for embedded Facebook player
739 mobj = re.search(
db1f3888 740 r'<iframe[^>]+?src=(["\'])(?P<url>https://www\.facebook\.com/video/embed.+?)\1', webpage)
9834872b
PH
741 if mobj is not None:
742 return self.url_result(mobj.group('url'), 'Facebook')
743
ca97a56e
S
744 # Look for embedded VK player
745 mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
746 if mobj is not None:
747 return self.url_result(mobj.group('url'), 'VK')
748
0364fa8b
S
749 # Look for embedded ivi player
750 mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage)
751 if mobj is not None:
752 return self.url_result(mobj.group('url'), 'Ivi')
753
db1f3888
PH
754 # Look for embedded Huffington Post player
755 mobj = re.search(
c3f51436 756 r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
db1f3888
PH
757 if mobj is not None:
758 return self.url_result(mobj.group('url'), 'HuffPost')
759
1b86cc41 760 # Look for embed.ly
761 mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
762 if mobj is not None:
763 return self.url_result(mobj.group('url'))
764 mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
765 if mobj is not None:
766 return self.url_result(compat_urllib_parse.unquote(mobj.group('url')))
767
60cc4dc4
PH
768 # Look for funnyordie embed
769 matches = re.findall(r'<iframe[^>]+?src="(https?://(?:www\.)?funnyordie\.com/embed/[^"]+)"', webpage)
770 if matches:
ed2d6a19
PH
771 return _playlist_from_matches(
772 matches, getter=unescapeHTML, ie='FunnyOrDie')
60cc4dc4 773
93d020dd
S
774 # Look for embedded RUTV player
775 rutv_url = RUTVIE._extract_url(webpage)
776 if rutv_url:
777 return self.url_result(rutv_url, 'RUTV')
778
7e2ede98
JMF
779 # Look for embedded TED player
780 mobj = re.search(
781 r'<iframe[^>]+?src=(["\'])(?P<url>http://embed\.ted\.com/.+?)\1', webpage)
782 if mobj is not None:
783 return self.url_result(mobj.group('url'), 'TED')
784
5c386252 785 # Look for embedded Ustream videos
786 mobj = re.search(
787 r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage)
788 if mobj is not None:
789 return self.url_result(mobj.group('url'), 'Ustream')
790
893f8832
PH
791 # Look for embedded arte.tv player
792 mobj = re.search(
793 r'<script [^>]*?src="(?P<url>http://www\.arte\.tv/playerv2/embed[^"]+)"',
794 webpage)
795 if mobj is not None:
796 return self.url_result(mobj.group('url'), 'ArteTVEmbed')
797
cb3ac1c6
S
798 # Look for embedded smotri.com player
799 smotri_url = SmotriIE._extract_url(webpage)
800 if smotri_url:
801 return self.url_result(smotri_url, 'Smotri')
802
20991253
PH
803 # Look for embeded soundcloud player
804 mobj = re.search(
805 r'<iframe src="(?P<url>https?://(?:w\.)?soundcloud\.com/player[^"]+)"',
806 webpage)
807 if mobj is not None:
808 url = unescapeHTML(mobj.group('url'))
809 return self.url_result(url)
810
826ec77f
PH
811 # Look for embedded vulture.com player
812 mobj = re.search(
813 r'<iframe src="(?P<url>https?://video\.vulture\.com/[^"]+)"',
814 webpage)
815 if mobj is not None:
816 url = unescapeHTML(mobj.group('url'))
817 return self.url_result(url, ie='Vulture')
818
c5cd249e
JMF
819 # Look for embedded mtvservices player
820 mobj = re.search(
821 r'<iframe src="(?P<url>https?://media\.mtvnservices\.com/embed/[^"]+)"',
822 webpage)
823 if mobj is not None:
824 url = unescapeHTML(mobj.group('url'))
825 return self.url_result(url, ie='MTVServicesEmbedded')
826
49807b4a
S
827 # Look for embedded yahoo player
828 mobj = re.search(
829 r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1',
830 webpage)
831 if mobj is not None:
832 return self.url_result(mobj.group('url'), 'Yahoo')
833
2ef6fcb5
PH
834 # Look for embedded sbs.com.au player
835 mobj = re.search(
836 r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:www\.)sbs\.com\.au/ondemand/video/single/.+?)\1',
837 webpage)
838 if mobj is not None:
839 return self.url_result(mobj.group('url'), 'SBS')
840
9b122384 841 # Start with something easy: JW Player in SWFObject
b30b8698
PH
842 found = re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage)
843 if not found:
d981cef6 844 # Look for gorilla-vid style embedding
b30b8698 845 found = re.findall(r'''(?sx)
c0292e8a
PH
846 (?:
847 jw_plugins|
848 JWPlayerOptions|
849 jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
850 )
851 .*?file\s*:\s*["\'](.*?)["\']''', webpage)
b30b8698 852 if not found:
9b122384 853 # Broaden the search a little bit
b30b8698
PH
854 found = re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage)
855 if not found:
856 # Broaden the findall a little bit: JWPlayer JS loader
857 found = re.findall(r'[^A-Za-z0-9]?file["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage)
4d805e06
PH
858 if not found:
859 # Flow player
860 found = re.findall(r'''(?xs)
861 flowplayer\("[^"]+",\s*
862 \{[^}]+?\}\s*,
863 \s*{[^}]+? ["']?clip["']?\s*:\s*\{\s*
864 ["']?url["']?\s*:\s*["']([^"']+)["']
865 ''', webpage)
866 assert found
b30b8698 867 if not found:
9b122384 868 # Try to find twitter cards info
b30b8698
PH
869 found = re.findall(r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage)
870 if not found:
9b122384
PH
871 # We look for Open Graph info:
872 # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
b30b8698 873 m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
9b122384
PH
874 # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
875 if m_video_type is not None:
fa8deaf3
PH
876 def check_video(vurl):
877 vpath = compat_urlparse.urlparse(vurl).path
10eaeb20 878 return '.' in vpath and not vpath.endswith('.swf')
fa8deaf3
PH
879 found = list(filter(
880 check_video,
881 re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage)))
b30b8698 882 if not found:
7fea7156 883 # HTML5 video
b30b8698
PH
884 found = re.findall(r'(?s)<video[^<]*(?:>.*?<source.*?)? src="([^"]+)"', webpage)
885 if not found:
a5a45015 886 found = re.search(
89ef304b
PH
887 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
888 r'(?:[a-z-]+="[^"]+"\s+)*?content="[0-9]{,2};url=\'([^\']+)\'"',
889 webpage)
b30b8698
PH
890 if found:
891 new_url = found.group(1)
89ef304b
PH
892 self.report_following_redirect(new_url)
893 return {
894 '_type': 'url',
895 'url': new_url,
896 }
b30b8698 897 if not found:
79649588 898 raise ExtractorError('Unsupported URL: %s' % url)
9b122384 899
b30b8698
PH
900 entries = []
901 for video_url in found:
902 video_url = compat_urlparse.urljoin(url, video_url)
903 video_id = compat_urllib_parse.unquote(os.path.basename(video_url))
9b122384 904
b30b8698
PH
905 # Sometimes, jwplayer extraction will result in a YouTube URL
906 if YoutubeIE.suitable(video_url):
907 entries.append(self.url_result(video_url, 'Youtube'))
908 continue
9b122384 909
b30b8698
PH
910 # here's a fun little line of code for you:
911 video_id = os.path.splitext(video_id)[0]
fc9713a1 912
b30b8698
PH
913 entries.append({
914 'id': video_id,
915 'url': video_url,
916 'uploader': video_uploader,
917 'title': video_title,
4d805e06 918 'age_limit': age_limit,
b30b8698
PH
919 })
920
921 if len(entries) == 1:
669f0e7c 922 return entries[0]
b30b8698
PH
923 else:
924 for num, e in enumerate(entries, start=1):
925 e['title'] = '%s (%d)' % (e['title'], num)
926 return {
927 '_type': 'playlist',
928 'entries': entries,
929 }
9b122384 930