Merge remote-tracking branch 'olebowle/gameone'
[youtube-dl] / youtube_dl / extractor / generic.py
1 # encoding: utf-8
2
3 from __future__ import unicode_literals
4
5 import os
6 import re
7
8 from .common import InfoExtractor
9 from .youtube import YoutubeIE
10 from ..utils import (
11     compat_urllib_error,
12     compat_urllib_parse,
13     compat_urllib_request,
14     compat_urlparse,
15     compat_xml_parse_error,
16
17     ExtractorError,
18     float_or_none,
19     HEADRequest,
20     orderedSet,
21     parse_xml,
22     smuggle_url,
23     unescapeHTML,
24     unified_strdate,
25     unsmuggle_url,
26     url_basename,
27 )
28 from .brightcove import BrightcoveIE
29 from .ooyala import OoyalaIE
30 from .rutv import RUTVIE
31 from .smotri import SmotriIE
32
33
34 class GenericIE(InfoExtractor):
35     IE_DESC = 'Generic downloader that works on some sites'
36     _VALID_URL = r'.*'
37     IE_NAME = 'generic'
38     _TESTS = [
39         {
40             'url': 'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html',
41             'md5': '85b90ccc9d73b4acd9138d3af4c27f89',
42             'info_dict': {
43                 'id': '13601338388002',
44                 'ext': 'mp4',
45                 'uploader': 'www.hodiho.fr',
46                 'title': 'R\u00e9gis plante sa Jeep',
47             }
48         },
49         # bandcamp page with custom domain
50         {
51             'add_ie': ['Bandcamp'],
52             'url': 'http://bronyrock.com/track/the-pony-mash',
53             'info_dict': {
54                 'id': '3235767654',
55                 'ext': 'mp3',
56                 'title': 'The Pony Mash',
57                 'uploader': 'M_Pallante',
58             },
59             'skip': 'There is a limit of 200 free downloads / month for the test song',
60         },
61         # embedded brightcove video
62         # it also tests brightcove videos that need to set the 'Referer' in the
63         # http requests
64         {
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',
73             },
74             'params': {
75                 'skip_download': True,
76             },
77         },
78         {
79             # https://github.com/rg3/youtube-dl/issues/2253
80             'url': 'http://bcove.me/i6nfkrc3',
81             'md5': '0ba9446db037002366bab3b3eb30c88c',
82             'info_dict': {
83                 'id': '3101154703001',
84                 'ext': 'mp4',
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         },
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         },
102         # Direct link to a video
103         {
104             'url': 'http://media.w3.org/2010/05/sintel/trailer.mp4',
105             'md5': '67d406c2bcb6af27fa886f31aa934bbe',
106             'info_dict': {
107                 'id': 'trailer',
108                 'ext': 'mp4',
109                 'title': 'trailer',
110                 'upload_date': '20100513',
111             }
112         },
113         # ooyala video
114         {
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',
120                 'title': '2cc213299525360.mov',  # that's what we get
121             },
122         },
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             }
138         },
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',
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',
150             },
151             # No need to test YoutubeIE here
152             'params': {
153                 'skip_download': True,
154             },
155         },
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.',
165             },
166         },
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             },
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             }
192         },
193         # Embeded Ustream video
194         {
195             'url': 'http://www.american.edu/spa/pti/nsa-privacy-janus-2014.cfm',
196             'md5': '27b99cdb639c9b12a79bca876a073417',
197             'info_dict': {
198                 'id': '45734260',
199                 'ext': 'flv',
200                 'uploader': 'AU SPA:  The NSA and Privacy',
201                 'title': 'NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman'
202             }
203         },
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             },
214         },
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         },
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         },
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             }
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'],
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         },
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         },
295         # YouTube embed via <data-embed-url="">
296         {
297             'url': 'https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM',
298             'info_dict': {
299                 'id': 'jpSGZsgga_I',
300                 'ext': 'mp4',
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,
309             }
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             }
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             }
346         }
347     ]
348
349     def report_download_webpage(self, video_id):
350         """Report webpage download."""
351         if not self._downloader.params.get('test', False):
352             self._downloader.report_warning('Falling back on generic information extractor.')
353         super(GenericIE, self).report_download_webpage(video_id)
354
355     def report_following_redirect(self, new_url):
356         """Report information extraction."""
357         self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
358
359     def _extract_rss(self, url, video_id, doc):
360         playlist_title = doc.find('./channel/title').text
361         playlist_desc_el = doc.find('./channel/description')
362         playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
363
364         entries = [{
365             '_type': 'url',
366             'url': e.find('link').text,
367             'title': e.find('title').text,
368         } for e in doc.findall('./channel/item')]
369
370         return {
371             '_type': 'playlist',
372             'id': url,
373             'title': playlist_title,
374             'description': playlist_desc,
375             'entries': entries,
376         }
377
378     def _extract_camtasia(self, url, video_id, webpage):
379         """ Returns None if no camtasia video can be found. """
380
381         camtasia_cfg = self._search_regex(
382             r'fo\.addVariable\(\s*"csConfigFile",\s*"([^"]+)"\s*\);',
383             webpage, 'camtasia configuration file', default=None)
384         if camtasia_cfg is None:
385             return None
386
387         title = self._html_search_meta('DC.title', webpage, fatal=True)
388
389         camtasia_url = compat_urlparse.urljoin(url, camtasia_cfg)
390         camtasia_cfg = self._download_xml(
391             camtasia_url, video_id,
392             note='Downloading camtasia configuration',
393             errnote='Failed to download camtasia configuration')
394         fileset_node = camtasia_cfg.find('./playlist/array/fileset')
395
396         entries = []
397         for n in fileset_node.getchildren():
398             url_n = n.find('./uri')
399             if url_n is None:
400                 continue
401
402             entries.append({
403                 'id': os.path.splitext(url_n.text.rpartition('/')[2])[0],
404                 'title': '%s - %s' % (title, n.tag),
405                 'url': compat_urlparse.urljoin(url, url_n.text),
406                 'duration': float_or_none(n.find('./duration').text),
407             })
408
409         return {
410             '_type': 'playlist',
411             'entries': entries,
412             'title': title,
413         }
414
415     def _real_extract(self, url):
416         if url.startswith('//'):
417             return {
418                 '_type': 'url',
419                 'url': self.http_scheme() + url,
420             }
421
422         parsed_url = compat_urlparse.urlparse(url)
423         if not parsed_url.scheme:
424             default_search = self._downloader.params.get('default_search')
425             if default_search is None:
426                 default_search = 'fixup_error'
427
428             if default_search in ('auto', 'auto_warning', 'fixup_error'):
429                 if '/' in url:
430                     self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
431                     return self.url_result('http://' + url)
432                 elif default_search != 'fixup_error':
433                     if default_search == 'auto_warning':
434                         if re.match(r'^(?:url|URL)$', url):
435                             raise ExtractorError(
436                                 'Invalid URL:  %r . Call youtube-dl like this:  youtube-dl -v "https://www.youtube.com/watch?v=BaW_jenozKc"  ' % url,
437                                 expected=True)
438                         else:
439                             self._downloader.report_warning(
440                                 'Falling back to youtube search for  %s . Set --default-search "auto" to suppress this warning.' % url)
441                     return self.url_result('ytsearch:' + url)
442
443             if default_search in ('error', 'fixup_error'):
444                 raise ExtractorError(
445                     ('%r is not a valid URL. '
446                      'Set --default-search "ytsearch" (or run  youtube-dl "ytsearch:%s" ) to search YouTube'
447                     ) % (url, url), expected=True)
448             else:
449                 assert ':' in default_search
450                 return self.url_result(default_search + url)
451
452         url, smuggled_data = unsmuggle_url(url)
453         force_videoid = None
454         if smuggled_data and 'force_videoid' in smuggled_data:
455             force_videoid = smuggled_data['force_videoid']
456             video_id = force_videoid
457         else:
458             video_id = os.path.splitext(url.rstrip('/').split('/')[-1])[0]
459
460         self.to_screen('%s: Requesting header' % video_id)
461
462         head_req = HEADRequest(url)
463         response = self._request_webpage(
464             head_req, video_id,
465             note=False, errnote='Could not send HEAD request to %s' % url,
466             fatal=False)
467
468         if response is not False:
469             # Check for redirect
470             new_url = response.geturl()
471             if url != new_url:
472                 self.report_following_redirect(new_url)
473                 if force_videoid:
474                     new_url = smuggle_url(
475                         new_url, {'force_videoid': force_videoid})
476                 return self.url_result(new_url)
477
478             # Check for direct link to a video
479             content_type = response.headers.get('Content-Type', '')
480             m = re.match(r'^(?P<type>audio|video|application(?=/ogg$))/(?P<format_id>.+)$', content_type)
481             if m:
482                 upload_date = response.headers.get('Last-Modified')
483                 if upload_date:
484                     upload_date = unified_strdate(upload_date)
485                 return {
486                     'id': video_id,
487                     'title': os.path.splitext(url_basename(url))[0],
488                     'formats': [{
489                         'format_id': m.group('format_id'),
490                         'url': url,
491                         'vcodec': 'none' if m.group('type') == 'audio' else None
492                     }],
493                     'upload_date': upload_date,
494                 }
495
496         try:
497             webpage = self._download_webpage(url, video_id)
498         except ValueError:
499             # since this is the last-resort InfoExtractor, if
500             # this error is thrown, it'll be thrown here
501             raise ExtractorError('Failed to download URL: %s' % url)
502
503         self.report_extraction(video_id)
504
505         # Is it an RSS feed?
506         try:
507             doc = parse_xml(webpage)
508             if doc.tag == 'rss':
509                 return self._extract_rss(url, video_id, doc)
510         except compat_xml_parse_error:
511             pass
512
513         # Is it a Camtasia project?
514         camtasia_res = self._extract_camtasia(url, video_id, webpage)
515         if camtasia_res is not None:
516             return camtasia_res
517
518         # Sometimes embedded video player is hidden behind percent encoding
519         # (e.g. https://github.com/rg3/youtube-dl/issues/2448)
520         # Unescaping the whole page allows to handle those cases in a generic way
521         webpage = compat_urllib_parse.unquote(webpage)
522
523         # it's tempting to parse this further, but you would
524         # have to take into account all the variations like
525         #   Video Title - Site Name
526         #   Site Name | Video Title
527         #   Video Title - Tagline | Site Name
528         # and so on and so forth; it's just not practical
529         video_title = self._html_search_regex(
530             r'(?s)<title>(.*?)</title>', webpage, 'video title',
531             default='video')
532
533         # Try to detect age limit automatically
534         age_limit = self._rta_search(webpage)
535         # And then there are the jokers who advertise that they use RTA,
536         # but actually don't.
537         AGE_LIMIT_MARKERS = [
538             r'Proudly Labeled <a href="http://www.rtalabel.org/" title="Restricted to Adults">RTA</a>',
539         ]
540         if any(re.search(marker, webpage) for marker in AGE_LIMIT_MARKERS):
541             age_limit = 18
542
543         # video uploader is domain name
544         video_uploader = self._search_regex(
545             r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
546
547         # Helper method
548         def _playlist_from_matches(matches, getter, ie=None):
549             urlrs = orderedSet(self.url_result(getter(m), ie) for m in matches)
550             return self.playlist_result(
551                 urlrs, playlist_id=video_id, playlist_title=video_title)
552
553         # Look for BrightCove:
554         bc_urls = BrightcoveIE._extract_brightcove_urls(webpage)
555         if bc_urls:
556             self.to_screen('Brightcove video detected.')
557             entries = [{
558                 '_type': 'url',
559                 'url': smuggle_url(bc_url, {'Referer': url}),
560                 'ie_key': 'Brightcove'
561             } for bc_url in bc_urls]
562
563             return {
564                 '_type': 'playlist',
565                 'title': video_title,
566                 'id': video_id,
567                 'entries': entries,
568             }
569
570         # Look for embedded (iframe) Vimeo player
571         mobj = re.search(
572             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//player\.vimeo\.com/video/.+?)\1', webpage)
573         if mobj:
574             player_url = unescapeHTML(mobj.group('url'))
575             surl = smuggle_url(player_url, {'Referer': url})
576             return self.url_result(surl, 'Vimeo')
577
578         # Look for embedded (swf embed) Vimeo player
579         mobj = re.search(
580             r'<embed[^>]+?src="(https?://(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
581         if mobj:
582             return self.url_result(mobj.group(1), 'Vimeo')
583
584         # Look for embedded YouTube player
585         matches = re.findall(r'''(?x)
586             (?:
587                 <iframe[^>]+?src=|
588                 data-video-url=|
589                 <embed[^>]+?src=|
590                 embedSWF\(?:\s*
591             )
592             (["\'])
593                 (?P<url>(?:https?:)?//(?:www\.)?youtube\.com/
594                 (?:embed|v)/.+?)
595             \1''', webpage)
596         if matches:
597             return _playlist_from_matches(
598                 matches, lambda m: unescapeHTML(m[1]), ie='Youtube')
599
600         # Look for embedded Dailymotion player
601         matches = re.findall(
602             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/embed/video/.+?)\1', webpage)
603         if matches:
604             return _playlist_from_matches(
605                 matches, lambda m: unescapeHTML(m[1]))
606
607         # Look for embedded Wistia player
608         match = re.search(
609             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
610         if match:
611             return {
612                 '_type': 'url_transparent',
613                 'url': unescapeHTML(match.group('url')),
614                 'ie_key': 'Wistia',
615                 'uploader': video_uploader,
616                 'title': video_title,
617                 'id': video_id,
618             }
619
620         # Look for embedded blip.tv player
621         mobj = re.search(r'<meta\s[^>]*https?://api\.blip\.tv/\w+/redirect/\w+/(\d+)', webpage)
622         if mobj:
623             return self.url_result('http://blip.tv/a/a-'+mobj.group(1), 'BlipTV')
624         mobj = re.search(r'<(?:iframe|embed|object)\s[^>]*(https?://(?:\w+\.)?blip\.tv/(?:play/|api\.swf#)[a-zA-Z0-9_]+)', webpage)
625         if mobj:
626             return self.url_result(mobj.group(1), 'BlipTV')
627
628         # Look for embedded condenast player
629         matches = re.findall(
630             r'<iframe\s+(?:[a-zA-Z-]+="[^"]+"\s+)*?src="(https?://player\.cnevids\.com/embed/[^"]+")',
631             webpage)
632         if matches:
633             return {
634                 '_type': 'playlist',
635                 'entries': [{
636                     '_type': 'url',
637                     'ie_key': 'CondeNast',
638                     'url': ma,
639                 } for ma in matches],
640                 'title': video_title,
641                 'id': video_id,
642             }
643
644         # Look for Bandcamp pages with custom domain
645         mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
646         if mobj is not None:
647             burl = unescapeHTML(mobj.group(1))
648             # Don't set the extractor because it can be a track url or an album
649             return self.url_result(burl)
650
651         # Look for embedded Vevo player
652         mobj = re.search(
653             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
654         if mobj is not None:
655             return self.url_result(mobj.group('url'))
656
657         # Look for Ooyala videos
658         mobj = (re.search(r'player.ooyala.com/[^"?]+\?[^"]*?(?:embedCode|ec)=(?P<ec>[^"&]+)', webpage) or
659              re.search(r'OO.Player.create\([\'"].*?[\'"],\s*[\'"](?P<ec>.{32})[\'"]', webpage))
660         if mobj is not None:
661             return OoyalaIE._build_url_result(mobj.group('ec'))
662
663         # Look for Aparat videos
664         mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
665         if mobj is not None:
666             return self.url_result(mobj.group(1), 'Aparat')
667
668         # Look for MPORA videos
669         mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
670         if mobj is not None:
671             return self.url_result(mobj.group(1), 'Mpora')
672
673         # Look for embedded NovaMov-based player
674         mobj = re.search(
675             r'''(?x)<(?:pagespeed_)?iframe[^>]+?src=(["\'])
676                     (?P<url>http://(?:(?:embed|www)\.)?
677                         (?:novamov\.com|
678                            nowvideo\.(?:ch|sx|eu|at|ag|co)|
679                            videoweed\.(?:es|com)|
680                            movshare\.(?:net|sx|ag)|
681                            divxstage\.(?:eu|net|ch|co|at|ag))
682                         /embed\.php.+?)\1''', webpage)
683         if mobj is not None:
684             return self.url_result(mobj.group('url'))
685
686         # Look for embedded Facebook player
687         mobj = re.search(
688             r'<iframe[^>]+?src=(["\'])(?P<url>https://www\.facebook\.com/video/embed.+?)\1', webpage)
689         if mobj is not None:
690             return self.url_result(mobj.group('url'), 'Facebook')
691
692         # Look for embedded VK player
693         mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
694         if mobj is not None:
695             return self.url_result(mobj.group('url'), 'VK')
696
697         # Look for embedded ivi player
698         mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage)
699         if mobj is not None:
700             return self.url_result(mobj.group('url'), 'Ivi')
701
702         # Look for embedded Huffington Post player
703         mobj = re.search(
704             r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
705         if mobj is not None:
706             return self.url_result(mobj.group('url'), 'HuffPost')
707
708         # Look for embed.ly
709         mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
710         if mobj is not None:
711             return self.url_result(mobj.group('url'))
712         mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
713         if mobj is not None:
714             return self.url_result(compat_urllib_parse.unquote(mobj.group('url')))
715
716         # Look for funnyordie embed
717         matches = re.findall(r'<iframe[^>]+?src="(https?://(?:www\.)?funnyordie\.com/embed/[^"]+)"', webpage)
718         if matches:
719             return _playlist_from_matches(
720                 matches, getter=unescapeHTML, ie='FunnyOrDie')
721
722         # Look for embedded RUTV player
723         rutv_url = RUTVIE._extract_url(webpage)
724         if rutv_url:
725             return self.url_result(rutv_url, 'RUTV')
726
727         # Look for embedded TED player
728         mobj = re.search(
729             r'<iframe[^>]+?src=(["\'])(?P<url>http://embed\.ted\.com/.+?)\1', webpage)
730         if mobj is not None:
731             return self.url_result(mobj.group('url'), 'TED')
732
733         # Look for embedded Ustream videos
734         mobj = re.search(
735             r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage)
736         if mobj is not None:
737             return self.url_result(mobj.group('url'), 'Ustream')
738
739         # Look for embedded arte.tv player
740         mobj = re.search(
741             r'<script [^>]*?src="(?P<url>http://www\.arte\.tv/playerv2/embed[^"]+)"',
742             webpage)
743         if mobj is not None:
744             return self.url_result(mobj.group('url'), 'ArteTVEmbed')
745
746         # Look for embedded smotri.com player
747         smotri_url = SmotriIE._extract_url(webpage)
748         if smotri_url:
749             return self.url_result(smotri_url, 'Smotri')
750
751         # Look for embeded soundcloud player
752         mobj = re.search(
753             r'<iframe src="(?P<url>https?://(?:w\.)?soundcloud\.com/player[^"]+)"',
754             webpage)
755         if mobj is not None:
756             url = unescapeHTML(mobj.group('url'))
757             return self.url_result(url)
758
759         # Look for embedded vulture.com player
760         mobj = re.search(
761             r'<iframe src="(?P<url>https?://video\.vulture\.com/[^"]+)"',
762             webpage)
763         if mobj is not None:
764             url = unescapeHTML(mobj.group('url'))
765             return self.url_result(url, ie='Vulture')
766
767         # Look for embedded mtvservices player
768         mobj = re.search(
769             r'<iframe src="(?P<url>https?://media\.mtvnservices\.com/embed/[^"]+)"',
770             webpage)
771         if mobj is not None:
772             url = unescapeHTML(mobj.group('url'))
773             return self.url_result(url, ie='MTVServicesEmbedded')
774
775         # Look for embedded yahoo player
776         mobj = re.search(
777             r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1',
778             webpage)
779         if mobj is not None:
780             return self.url_result(mobj.group('url'), 'Yahoo')
781
782         # Look for embedded sbs.com.au player
783         mobj = re.search(
784             r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:www\.)sbs\.com\.au/ondemand/video/single/.+?)\1',
785             webpage)
786         if mobj is not None:
787             return self.url_result(mobj.group('url'), 'SBS')
788
789         # Start with something easy: JW Player in SWFObject
790         found = re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage)
791         if not found:
792             # Look for gorilla-vid style embedding
793             found = re.findall(r'''(?sx)
794                 (?:
795                     jw_plugins|
796                     JWPlayerOptions|
797                     jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
798                 )
799                 .*?file\s*:\s*["\'](.*?)["\']''', webpage)
800         if not found:
801             # Broaden the search a little bit
802             found = re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage)
803         if not found:
804             # Broaden the findall a little bit: JWPlayer JS loader
805             found = re.findall(r'[^A-Za-z0-9]?file["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage)
806         if not found:
807             # Flow player
808             found = re.findall(r'''(?xs)
809                 flowplayer\("[^"]+",\s*
810                     \{[^}]+?\}\s*,
811                     \s*{[^}]+? ["']?clip["']?\s*:\s*\{\s*
812                         ["']?url["']?\s*:\s*["']([^"']+)["']
813             ''', webpage)
814             assert found
815         if not found:
816             # Try to find twitter cards info
817             found = re.findall(r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage)
818         if not found:
819             # We look for Open Graph info:
820             # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
821             m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
822             # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
823             if m_video_type is not None:
824                 def check_video(vurl):
825                     vpath = compat_urlparse.urlparse(vurl).path
826                     return '.' in vpath and not vpath.endswith('.swf')
827                 found = list(filter(
828                     check_video,
829                     re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage)))
830         if not found:
831             # HTML5 video
832             found = re.findall(r'(?s)<video[^<]*(?:>.*?<source.*?)? src="([^"]+)"', webpage)
833         if not found:
834             found = re.search(
835                 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
836                 r'(?:[a-z-]+="[^"]+"\s+)*?content="[0-9]{,2};url=\'([^\']+)\'"',
837                 webpage)
838             if found:
839                 new_url = found.group(1)
840                 self.report_following_redirect(new_url)
841                 return {
842                     '_type': 'url',
843                     'url': new_url,
844                 }
845         if not found:
846             raise ExtractorError('Unsupported URL: %s' % url)
847
848         entries = []
849         for video_url in found:
850             video_url = compat_urlparse.urljoin(url, video_url)
851             video_id = compat_urllib_parse.unquote(os.path.basename(video_url))
852
853             # Sometimes, jwplayer extraction will result in a YouTube URL
854             if YoutubeIE.suitable(video_url):
855                 entries.append(self.url_result(video_url, 'Youtube'))
856                 continue
857
858             # here's a fun little line of code for you:
859             video_id = os.path.splitext(video_id)[0]
860
861             entries.append({
862                 'id': video_id,
863                 'url': video_url,
864                 'uploader': video_uploader,
865                 'title': video_title,
866                 'age_limit': age_limit,
867             })
868
869         if len(entries) == 1:
870             return entries[0]
871         else:
872             for num, e in enumerate(entries, start=1):
873                 e['title'] = '%s (%d)' % (e['title'], num)
874             return {
875                 '_type': 'playlist',
876                 'entries': entries,
877             }
878