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