[generic] Correct handling of embedded vimeo players (#3955)
[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_parse,
12     compat_urlparse,
13     compat_xml_parse_error,
14
15     determine_ext,
16     ExtractorError,
17     float_or_none,
18     HEADRequest,
19     orderedSet,
20     parse_xml,
21     smuggle_url,
22     unescapeHTML,
23     unified_strdate,
24     unsmuggle_url,
25     url_basename,
26 )
27 from .brightcove import BrightcoveIE
28 from .ooyala import OoyalaIE
29 from .rutv import RUTVIE
30 from .smotri import SmotriIE
31 from .condenast import CondeNastIE
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             'info_dict': {
160                 'id': '18e820ec3f',
161                 'ext': 'mp4',
162                 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama',
163                 'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',
164             },
165         },
166         # RUTV embed
167         {
168             'url': 'http://www.rg.ru/2014/03/15/reg-dfo/anklav-anons.html',
169             'info_dict': {
170                 'id': '776940',
171                 'ext': 'mp4',
172                 'title': 'Охотское море стало целиком российским',
173                 'description': 'md5:5ed62483b14663e2a95ebbe115eb8f43',
174             },
175             'params': {
176                 # m3u8 download
177                 'skip_download': True,
178             },
179         },
180         # Embedded TED video
181         {
182             'url': 'http://en.support.wordpress.com/videos/ted-talks/',
183             'md5': '65fdff94098e4a607385a60c5177c638',
184             'info_dict': {
185                 'id': '1969',
186                 'ext': 'mp4',
187                 'title': 'Hidden miracles of the natural world',
188                 'uploader': 'Louie Schwartzberg',
189                 'description': 'md5:8145d19d320ff3e52f28401f4c4283b9',
190             }
191         },
192         # Embeded Ustream video
193         {
194             'url': 'http://www.american.edu/spa/pti/nsa-privacy-janus-2014.cfm',
195             'md5': '27b99cdb639c9b12a79bca876a073417',
196             'info_dict': {
197                 'id': '45734260',
198                 'ext': 'flv',
199                 'uploader': 'AU SPA:  The NSA and Privacy',
200                 'title': 'NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman'
201             }
202         },
203         # nowvideo embed hidden behind percent encoding
204         {
205             'url': 'http://www.waoanime.tv/the-super-dimension-fortress-macross-episode-1/',
206             'md5': '2baf4ddd70f697d94b1c18cf796d5107',
207             'info_dict': {
208                 'id': '06e53103ca9aa',
209                 'ext': 'flv',
210                 'title': 'Macross Episode 001  Watch Macross Episode 001 onl',
211                 'description': 'No description',
212             },
213         },
214         # arte embed
215         {
216             'url': 'http://www.tv-replay.fr/redirection/20-03-14/x-enius-arte-10753389.html',
217             'md5': '7653032cbb25bf6c80d80f217055fa43',
218             'info_dict': {
219                 'id': '048195-004_PLUS7-F',
220                 'ext': 'flv',
221                 'title': 'X:enius',
222                 'description': 'md5:d5fdf32ef6613cdbfd516ae658abf168',
223                 'upload_date': '20140320',
224             },
225             'params': {
226                 'skip_download': 'Requires rtmpdump'
227             }
228         },
229         # Condé Nast embed
230         {
231             'url': 'http://www.wired.com/2014/04/honda-asimo/',
232             'md5': 'ba0dfe966fa007657bd1443ee672db0f',
233             'info_dict': {
234                 'id': '53501be369702d3275860000',
235                 'ext': 'mp4',
236                 'title': 'Honda’s  New Asimo Robot Is More Human Than Ever',
237             }
238         },
239         # Dailymotion embed
240         {
241             'url': 'http://www.spi0n.com/zap-spi0n-com-n216/',
242             'md5': '441aeeb82eb72c422c7f14ec533999cd',
243             'info_dict': {
244                 'id': 'k2mm4bCdJ6CQ2i7c8o2',
245                 'ext': 'mp4',
246                 'title': 'Le Zap de Spi0n n°216 - Zapping du Web',
247                 'uploader': 'Spi0n',
248             },
249             'add_ie': ['Dailymotion'],
250         },
251         # YouTube embed
252         {
253             'url': 'http://www.badzine.de/ansicht/datum/2014/06/09/so-funktioniert-die-neue-englische-badminton-liga.html',
254             'info_dict': {
255                 'id': 'FXRb4ykk4S0',
256                 'ext': 'mp4',
257                 'title': 'The NBL Auction 2014',
258                 'uploader': 'BADMINTON England',
259                 'uploader_id': 'BADMINTONEvents',
260                 'upload_date': '20140603',
261                 'description': 'md5:9ef128a69f1e262a700ed83edb163a73',
262             },
263             'add_ie': ['Youtube'],
264             'params': {
265                 'skip_download': True,
266             }
267         },
268         # MTVSercices embed
269         {
270             'url': 'http://www.gametrailers.com/news-post/76093/north-america-europe-is-getting-that-mario-kart-8-mercedes-dlc-too',
271             'md5': '35727f82f58c76d996fc188f9755b0d5',
272             'info_dict': {
273                 'id': '0306a69b-8adf-4fb5-aace-75f8e8cbfca9',
274                 'ext': 'mp4',
275                 'title': 'Review',
276                 'description': 'Mario\'s life in the fast lane has never looked so good.',
277             },
278         },
279         # YouTube embed via <data-embed-url="">
280         {
281             'url': 'https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM',
282             'info_dict': {
283                 'id': '4vAffPZIT44',
284                 'ext': 'mp4',
285                 'title': 'Asphalt 8: Airborne - Update - Welcome to Dubai!',
286                 'uploader': 'Gameloft',
287                 'uploader_id': 'gameloft',
288                 'upload_date': '20140828',
289                 'description': 'md5:c80da9ed3d83ae6d1876c834de03e1c4',
290             },
291             'params': {
292                 'skip_download': True,
293             }
294         },
295         # Camtasia studio
296         {
297             'url': 'http://www.ll.mit.edu/workshops/education/videocourses/antennas/lecture1/video/',
298             'playlist': [{
299                 'md5': '0c5e352edabf715d762b0ad4e6d9ee67',
300                 'info_dict': {
301                     'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
302                     'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - video1',
303                     'ext': 'flv',
304                     'duration': 2235.90,
305                 }
306             }, {
307                 'md5': '10e4bb3aaca9fd630e273ff92d9f3c63',
308                 'info_dict': {
309                     'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final_PIP',
310                     'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - pip',
311                     'ext': 'flv',
312                     'duration': 2235.93,
313                 }
314             }],
315             'info_dict': {
316                 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
317             }
318         },
319         # Flowplayer
320         {
321             'url': 'http://www.handjobhub.com/video/busty-blonde-siri-tit-fuck-while-wank-6313.html',
322             'md5': '9d65602bf31c6e20014319c7d07fba27',
323             'info_dict': {
324                 'id': '5123ea6d5e5a7',
325                 'ext': 'mp4',
326                 'age_limit': 18,
327                 'uploader': 'www.handjobhub.com',
328                 'title': 'Busty Blonde Siri Tit Fuck While Wank at Handjob Hub',
329             }
330         },
331         # RSS feed
332         {
333             'url': 'http://phihag.de/2014/youtube-dl/rss2.xml',
334             'info_dict': {
335                 'id': 'http://phihag.de/2014/youtube-dl/rss2.xml',
336                 'title': 'Zero Punctuation',
337                 'description': 're:'
338             },
339             'playlist_mincount': 11,
340         },
341         # Multiple brightcove videos
342         # https://github.com/rg3/youtube-dl/issues/2283
343         {
344             'url': 'http://www.newyorker.com/online/blogs/newsdesk/2014/01/always-never-nuclear-command-and-control.html',
345             'info_dict': {
346                 'id': 'always-never',
347                 'title': 'Always / Never - The New Yorker',
348             },
349             'playlist_count': 3,
350             'params': {
351                 'extract_flat': False,
352                 'skip_download': True,
353             }
354         },
355         # MLB embed
356         {
357             'url': 'http://umpire-empire.com/index.php/topic/58125-laz-decides-no-thats-low/',
358             'md5': '96f09a37e44da40dd083e12d9a683327',
359             'info_dict': {
360                 'id': '33322633',
361                 'ext': 'mp4',
362                 'title': 'Ump changes call to ball',
363                 'description': 'md5:71c11215384298a172a6dcb4c2e20685',
364                 'duration': 48,
365                 'timestamp': 1401537900,
366                 'upload_date': '20140531',
367                 'thumbnail': 're:^https?://.*\.jpg$',
368             },
369         },
370         # Wistia embed
371         {
372             'url': 'http://education-portal.com/academy/lesson/north-american-exploration-failed-colonies-of-spain-france-england.html#lesson',
373             'md5': '8788b683c777a5cf25621eaf286d0c23',
374             'info_dict': {
375                 'id': '1cfaf6b7ea',
376                 'ext': 'mov',
377                 'title': 'md5:51364a8d3d009997ba99656004b5e20d',
378                 'duration': 643.0,
379                 'filesize': 182808282,
380                 'uploader': 'education-portal.com',
381             },
382         },
383     ]
384
385     def report_following_redirect(self, new_url):
386         """Report information extraction."""
387         self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
388
389     def _extract_rss(self, url, video_id, doc):
390         playlist_title = doc.find('./channel/title').text
391         playlist_desc_el = doc.find('./channel/description')
392         playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
393
394         entries = [{
395             '_type': 'url',
396             'url': e.find('link').text,
397             'title': e.find('title').text,
398         } for e in doc.findall('./channel/item')]
399
400         return {
401             '_type': 'playlist',
402             'id': url,
403             'title': playlist_title,
404             'description': playlist_desc,
405             'entries': entries,
406         }
407
408     def _extract_camtasia(self, url, video_id, webpage):
409         """ Returns None if no camtasia video can be found. """
410
411         camtasia_cfg = self._search_regex(
412             r'fo\.addVariable\(\s*"csConfigFile",\s*"([^"]+)"\s*\);',
413             webpage, 'camtasia configuration file', default=None)
414         if camtasia_cfg is None:
415             return None
416
417         title = self._html_search_meta('DC.title', webpage, fatal=True)
418
419         camtasia_url = compat_urlparse.urljoin(url, camtasia_cfg)
420         camtasia_cfg = self._download_xml(
421             camtasia_url, video_id,
422             note='Downloading camtasia configuration',
423             errnote='Failed to download camtasia configuration')
424         fileset_node = camtasia_cfg.find('./playlist/array/fileset')
425
426         entries = []
427         for n in fileset_node.getchildren():
428             url_n = n.find('./uri')
429             if url_n is None:
430                 continue
431
432             entries.append({
433                 'id': os.path.splitext(url_n.text.rpartition('/')[2])[0],
434                 'title': '%s - %s' % (title, n.tag),
435                 'url': compat_urlparse.urljoin(url, url_n.text),
436                 'duration': float_or_none(n.find('./duration').text),
437             })
438
439         return {
440             '_type': 'playlist',
441             'entries': entries,
442             'title': title,
443         }
444
445     def _real_extract(self, url):
446         if url.startswith('//'):
447             return {
448                 '_type': 'url',
449                 'url': self.http_scheme() + url,
450             }
451
452         parsed_url = compat_urlparse.urlparse(url)
453         if not parsed_url.scheme:
454             default_search = self._downloader.params.get('default_search')
455             if default_search is None:
456                 default_search = 'fixup_error'
457
458             if default_search in ('auto', 'auto_warning', 'fixup_error'):
459                 if '/' in url:
460                     self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
461                     return self.url_result('http://' + url)
462                 elif default_search != 'fixup_error':
463                     if default_search == 'auto_warning':
464                         if re.match(r'^(?:url|URL)$', url):
465                             raise ExtractorError(
466                                 'Invalid URL:  %r . Call youtube-dl like this:  youtube-dl -v "https://www.youtube.com/watch?v=BaW_jenozKc"  ' % url,
467                                 expected=True)
468                         else:
469                             self._downloader.report_warning(
470                                 'Falling back to youtube search for  %s . Set --default-search "auto" to suppress this warning.' % url)
471                     return self.url_result('ytsearch:' + url)
472
473             if default_search in ('error', 'fixup_error'):
474                 raise ExtractorError(
475                     ('%r is not a valid URL. '
476                      'Set --default-search "ytsearch" (or run  youtube-dl "ytsearch:%s" ) to search YouTube'
477                     ) % (url, url), expected=True)
478             else:
479                 assert ':' in default_search
480                 return self.url_result(default_search + url)
481
482         url, smuggled_data = unsmuggle_url(url)
483         force_videoid = None
484         is_intentional = smuggled_data and smuggled_data.get('to_generic')
485         if smuggled_data and 'force_videoid' in smuggled_data:
486             force_videoid = smuggled_data['force_videoid']
487             video_id = force_videoid
488         else:
489             video_id = os.path.splitext(url.rstrip('/').split('/')[-1])[0]
490
491         self.to_screen('%s: Requesting header' % video_id)
492
493         head_req = HEADRequest(url)
494         response = self._request_webpage(
495             head_req, video_id,
496             note=False, errnote='Could not send HEAD request to %s' % url,
497             fatal=False)
498
499         if response is not False:
500             # Check for redirect
501             new_url = response.geturl()
502             if url != new_url:
503                 self.report_following_redirect(new_url)
504                 if force_videoid:
505                     new_url = smuggle_url(
506                         new_url, {'force_videoid': force_videoid})
507                 return self.url_result(new_url)
508
509             # Check for direct link to a video
510             content_type = response.headers.get('Content-Type', '')
511             m = re.match(r'^(?P<type>audio|video|application(?=/ogg$))/(?P<format_id>.+)$', content_type)
512             if m:
513                 upload_date = response.headers.get('Last-Modified')
514                 if upload_date:
515                     upload_date = unified_strdate(upload_date)
516                 return {
517                     'id': video_id,
518                     'title': os.path.splitext(url_basename(url))[0],
519                     'formats': [{
520                         'format_id': m.group('format_id'),
521                         'url': url,
522                         'vcodec': 'none' if m.group('type') == 'audio' else None
523                     }],
524                     'upload_date': upload_date,
525                 }
526
527         if not self._downloader.params.get('test', False) and not is_intentional:
528             self._downloader.report_warning('Falling back on generic information extractor.')
529
530         try:
531             webpage = self._download_webpage(url, video_id)
532         except ValueError:
533             # since this is the last-resort InfoExtractor, if
534             # this error is thrown, it'll be thrown here
535             raise ExtractorError('Failed to download URL: %s' % url)
536
537         self.report_extraction(video_id)
538
539         # Is it an RSS feed?
540         try:
541             doc = parse_xml(webpage)
542             if doc.tag == 'rss':
543                 return self._extract_rss(url, video_id, doc)
544         except compat_xml_parse_error:
545             pass
546
547         # Is it a Camtasia project?
548         camtasia_res = self._extract_camtasia(url, video_id, webpage)
549         if camtasia_res is not None:
550             return camtasia_res
551
552         # Sometimes embedded video player is hidden behind percent encoding
553         # (e.g. https://github.com/rg3/youtube-dl/issues/2448)
554         # Unescaping the whole page allows to handle those cases in a generic way
555         webpage = compat_urllib_parse.unquote(webpage)
556
557         # it's tempting to parse this further, but you would
558         # have to take into account all the variations like
559         #   Video Title - Site Name
560         #   Site Name | Video Title
561         #   Video Title - Tagline | Site Name
562         # and so on and so forth; it's just not practical
563         video_title = self._html_search_regex(
564             r'(?s)<title>(.*?)</title>', webpage, 'video title',
565             default='video')
566
567         # Try to detect age limit automatically
568         age_limit = self._rta_search(webpage)
569         # And then there are the jokers who advertise that they use RTA,
570         # but actually don't.
571         AGE_LIMIT_MARKERS = [
572             r'Proudly Labeled <a href="http://www.rtalabel.org/" title="Restricted to Adults">RTA</a>',
573         ]
574         if any(re.search(marker, webpage) for marker in AGE_LIMIT_MARKERS):
575             age_limit = 18
576
577         # video uploader is domain name
578         video_uploader = self._search_regex(
579             r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
580
581         # Helper method
582         def _playlist_from_matches(matches, getter, ie=None):
583             urlrs = orderedSet(
584                 self.url_result(self._proto_relative_url(getter(m)), ie)
585                 for m in matches)
586             return self.playlist_result(
587                 urlrs, playlist_id=video_id, playlist_title=video_title)
588
589         # Look for BrightCove:
590         bc_urls = BrightcoveIE._extract_brightcove_urls(webpage)
591         if bc_urls:
592             self.to_screen('Brightcove video detected.')
593             entries = [{
594                 '_type': 'url',
595                 'url': smuggle_url(bc_url, {'Referer': url}),
596                 'ie_key': 'Brightcove'
597             } for bc_url in bc_urls]
598
599             return {
600                 '_type': 'playlist',
601                 'title': video_title,
602                 'id': video_id,
603                 'entries': entries,
604             }
605
606         # Look for embedded (iframe) Vimeo player
607         mobj = re.search(
608             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//player\.vimeo\.com/video/.+?)\1', webpage)
609         if mobj:
610             player_url = unescapeHTML(mobj.group('url'))
611             surl = smuggle_url(player_url, {'Referer': url})
612             return self.url_result(surl)
613
614         # Look for embedded (swf embed) Vimeo player
615         mobj = re.search(
616             r'<embed[^>]+?src="((?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
617         if mobj:
618             return self.url_result(mobj.group(1))
619
620         # Look for embedded YouTube player
621         matches = re.findall(r'''(?x)
622             (?:
623                 <iframe[^>]+?src=|
624                 data-video-url=|
625                 <embed[^>]+?src=|
626                 embedSWF\(?:\s*
627             )
628             (["\'])
629                 (?P<url>(?:https?:)?//(?:www\.)?youtube(?:-nocookie)?\.com/
630                 (?:embed|v|p)/.+?)
631             \1''', webpage)
632         if matches:
633             return _playlist_from_matches(
634                 matches, lambda m: unescapeHTML(m[1]))
635
636         # Look for embedded Dailymotion player
637         matches = re.findall(
638             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/embed/video/.+?)\1', webpage)
639         if matches:
640             return _playlist_from_matches(
641                 matches, lambda m: unescapeHTML(m[1]))
642
643         # Look for embedded Dailymotion playlist player (#3822)
644         m = re.search(
645             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.[a-z]{2,3}/widget/jukebox\?.+?)\1', webpage)
646         if m:
647             playlists = re.findall(
648                 r'list\[\]=/playlist/([^/]+)/', unescapeHTML(m.group('url')))
649             if playlists:
650                 return _playlist_from_matches(
651                     playlists, lambda p: '//dailymotion.com/playlist/%s' % p)
652
653         # Look for embedded Wistia player
654         match = re.search(
655             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
656         if match:
657             return {
658                 '_type': 'url_transparent',
659                 'url': unescapeHTML(match.group('url')),
660                 'ie_key': 'Wistia',
661                 'uploader': video_uploader,
662                 'title': video_title,
663                 'id': video_id,
664             }
665         match = re.search(r'(?:id=["\']wistia_|data-wistiaid=["\']|Wistia\.embed\(["\'])(?P<id>[^"\']+)', webpage)
666         if match:
667             return {
668                 '_type': 'url_transparent',
669                 'url': 'http://fast.wistia.net/embed/iframe/{0:}'.format(match.group('id')),
670                 'ie_key': 'Wistia',
671                 'uploader': video_uploader,
672                 'title': video_title,
673                 'id': match.group('id')
674             }
675
676         # Look for embedded blip.tv player
677         mobj = re.search(r'<meta\s[^>]*https?://api\.blip\.tv/\w+/redirect/\w+/(\d+)', webpage)
678         if mobj:
679             return self.url_result('http://blip.tv/a/a-'+mobj.group(1), 'BlipTV')
680         mobj = re.search(r'<(?:iframe|embed|object)\s[^>]*(https?://(?:\w+\.)?blip\.tv/(?:play/|api\.swf#)[a-zA-Z0-9_]+)', webpage)
681         if mobj:
682             return self.url_result(mobj.group(1), 'BlipTV')
683
684         # Look for embedded condenast player
685         matches = re.findall(
686             r'<iframe\s+(?:[a-zA-Z-]+="[^"]+"\s+)*?src="(https?://player\.cnevids\.com/embed/[^"]+")',
687             webpage)
688         if matches:
689             return {
690                 '_type': 'playlist',
691                 'entries': [{
692                     '_type': 'url',
693                     'ie_key': 'CondeNast',
694                     'url': ma,
695                 } for ma in matches],
696                 'title': video_title,
697                 'id': video_id,
698             }
699
700         # Look for Bandcamp pages with custom domain
701         mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
702         if mobj is not None:
703             burl = unescapeHTML(mobj.group(1))
704             # Don't set the extractor because it can be a track url or an album
705             return self.url_result(burl)
706
707         # Look for embedded Vevo player
708         mobj = re.search(
709             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
710         if mobj is not None:
711             return self.url_result(mobj.group('url'))
712
713         # Look for Ooyala videos
714         mobj = (re.search(r'player.ooyala.com/[^"?]+\?[^"]*?(?:embedCode|ec)=(?P<ec>[^"&]+)', webpage) or
715              re.search(r'OO.Player.create\([\'"].*?[\'"],\s*[\'"](?P<ec>.{32})[\'"]', webpage))
716         if mobj is not None:
717             return OoyalaIE._build_url_result(mobj.group('ec'))
718
719         # Look for Aparat videos
720         mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
721         if mobj is not None:
722             return self.url_result(mobj.group(1), 'Aparat')
723
724         # Look for MPORA videos
725         mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
726         if mobj is not None:
727             return self.url_result(mobj.group(1), 'Mpora')
728
729         # Look for embedded NovaMov-based player
730         mobj = re.search(
731             r'''(?x)<(?:pagespeed_)?iframe[^>]+?src=(["\'])
732                     (?P<url>http://(?:(?:embed|www)\.)?
733                         (?:novamov\.com|
734                            nowvideo\.(?:ch|sx|eu|at|ag|co)|
735                            videoweed\.(?:es|com)|
736                            movshare\.(?:net|sx|ag)|
737                            divxstage\.(?:eu|net|ch|co|at|ag))
738                         /embed\.php.+?)\1''', webpage)
739         if mobj is not None:
740             return self.url_result(mobj.group('url'))
741
742         # Look for embedded Facebook player
743         mobj = re.search(
744             r'<iframe[^>]+?src=(["\'])(?P<url>https://www\.facebook\.com/video/embed.+?)\1', webpage)
745         if mobj is not None:
746             return self.url_result(mobj.group('url'), 'Facebook')
747
748         # Look for embedded VK player
749         mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
750         if mobj is not None:
751             return self.url_result(mobj.group('url'), 'VK')
752
753         # Look for embedded ivi player
754         mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage)
755         if mobj is not None:
756             return self.url_result(mobj.group('url'), 'Ivi')
757
758         # Look for embedded Huffington Post player
759         mobj = re.search(
760             r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
761         if mobj is not None:
762             return self.url_result(mobj.group('url'), 'HuffPost')
763
764         # Look for embed.ly
765         mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
766         if mobj is not None:
767             return self.url_result(mobj.group('url'))
768         mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
769         if mobj is not None:
770             return self.url_result(compat_urllib_parse.unquote(mobj.group('url')))
771
772         # Look for funnyordie embed
773         matches = re.findall(r'<iframe[^>]+?src="(https?://(?:www\.)?funnyordie\.com/embed/[^"]+)"', webpage)
774         if matches:
775             return _playlist_from_matches(
776                 matches, getter=unescapeHTML, ie='FunnyOrDie')
777
778         # Look for embedded RUTV player
779         rutv_url = RUTVIE._extract_url(webpage)
780         if rutv_url:
781             return self.url_result(rutv_url, 'RUTV')
782
783         # Look for embedded TED player
784         mobj = re.search(
785             r'<iframe[^>]+?src=(["\'])(?P<url>http://embed\.ted\.com/.+?)\1', webpage)
786         if mobj is not None:
787             return self.url_result(mobj.group('url'), 'TED')
788
789         # Look for embedded Ustream videos
790         mobj = re.search(
791             r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage)
792         if mobj is not None:
793             return self.url_result(mobj.group('url'), 'Ustream')
794
795         # Look for embedded arte.tv player
796         mobj = re.search(
797             r'<script [^>]*?src="(?P<url>http://www\.arte\.tv/playerv2/embed[^"]+)"',
798             webpage)
799         if mobj is not None:
800             return self.url_result(mobj.group('url'), 'ArteTVEmbed')
801
802         # Look for embedded smotri.com player
803         smotri_url = SmotriIE._extract_url(webpage)
804         if smotri_url:
805             return self.url_result(smotri_url, 'Smotri')
806
807         # Look for embeded soundcloud player
808         mobj = re.search(
809             r'<iframe src="(?P<url>https?://(?:w\.)?soundcloud\.com/player[^"]+)"',
810             webpage)
811         if mobj is not None:
812             url = unescapeHTML(mobj.group('url'))
813             return self.url_result(url)
814
815         # Look for embedded vulture.com player
816         mobj = re.search(
817             r'<iframe src="(?P<url>https?://video\.vulture\.com/[^"]+)"',
818             webpage)
819         if mobj is not None:
820             url = unescapeHTML(mobj.group('url'))
821             return self.url_result(url, ie='Vulture')
822
823         # Look for embedded mtvservices player
824         mobj = re.search(
825             r'<iframe src="(?P<url>https?://media\.mtvnservices\.com/embed/[^"]+)"',
826             webpage)
827         if mobj is not None:
828             url = unescapeHTML(mobj.group('url'))
829             return self.url_result(url, ie='MTVServicesEmbedded')
830
831         # Look for embedded yahoo player
832         mobj = re.search(
833             r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1',
834             webpage)
835         if mobj is not None:
836             return self.url_result(mobj.group('url'), 'Yahoo')
837
838         # Look for embedded sbs.com.au player
839         mobj = re.search(
840             r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:www\.)sbs\.com\.au/ondemand/video/single/.+?)\1',
841             webpage)
842         if mobj is not None:
843             return self.url_result(mobj.group('url'), 'SBS')
844
845         mobj = re.search(
846             r'<iframe[^>]+?src=(["\'])(?P<url>https?://m\.mlb\.com/shared/video/embed/embed\.html\?.+?)\1',
847             webpage)
848         if mobj is not None:
849             return self.url_result(mobj.group('url'), 'MLB')
850
851         mobj = re.search(
852             r'<iframe[^>]+?src=(["\'])(?P<url>%s)\1' % CondeNastIE.EMBED_URL,
853             webpage)
854         if mobj is not None:
855             return self.url_result(self._proto_relative_url(mobj.group('url'), scheme='http:'), 'CondeNast')
856
857         def check_video(vurl):
858             vpath = compat_urlparse.urlparse(vurl).path
859             vext = determine_ext(vpath)
860             return '.' in vpath and vext not in ('swf', 'png', 'jpg', 'srt', 'sbv', 'sub', 'vtt', 'ttml')
861
862         def filter_video(urls):
863             return list(filter(check_video, urls))
864
865         # Start with something easy: JW Player in SWFObject
866         found = filter_video(re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage))
867         if not found:
868             # Look for gorilla-vid style embedding
869             found = filter_video(re.findall(r'''(?sx)
870                 (?:
871                     jw_plugins|
872                     JWPlayerOptions|
873                     jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
874                 )
875                 .*?file\s*:\s*["\'](.*?)["\']''', webpage))
876         if not found:
877             # Broaden the search a little bit
878             found = filter_video(re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage))
879         if not found:
880             # Broaden the findall a little bit: JWPlayer JS loader
881             found = filter_video(re.findall(
882                 r'[^A-Za-z0-9]?file["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage))
883         if not found:
884             # Flow player
885             found = filter_video(re.findall(r'''(?xs)
886                 flowplayer\("[^"]+",\s*
887                     \{[^}]+?\}\s*,
888                     \s*{[^}]+? ["']?clip["']?\s*:\s*\{\s*
889                         ["']?url["']?\s*:\s*["']([^"']+)["']
890             ''', webpage))
891         if not found:
892             # Try to find twitter cards info
893             found = filter_video(re.findall(
894                 r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage))
895         if not found:
896             # We look for Open Graph info:
897             # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
898             m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
899             # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
900             if m_video_type is not None:
901                 found = filter_video(re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage))
902         if not found:
903             # HTML5 video
904             found = re.findall(r'(?s)<video[^<]*(?:>.*?<source[^>]+)? src="([^"]+)"', webpage)
905         if not found:
906             found = re.search(
907                 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
908                 r'(?:[a-z-]+="[^"]+"\s+)*?content="[0-9]{,2};url=\'?([^\'"]+)',
909                 webpage)
910             if found:
911                 new_url = found.group(1)
912                 self.report_following_redirect(new_url)
913                 return {
914                     '_type': 'url',
915                     'url': new_url,
916                 }
917         if not found:
918             raise ExtractorError('Unsupported URL: %s' % url)
919
920         entries = []
921         for video_url in found:
922             video_url = compat_urlparse.urljoin(url, video_url)
923             video_id = compat_urllib_parse.unquote(os.path.basename(video_url))
924
925             # Sometimes, jwplayer extraction will result in a YouTube URL
926             if YoutubeIE.suitable(video_url):
927                 entries.append(self.url_result(video_url, 'Youtube'))
928                 continue
929
930             # here's a fun little line of code for you:
931             video_id = os.path.splitext(video_id)[0]
932
933             entries.append({
934                 'id': video_id,
935                 'url': video_url,
936                 'uploader': video_uploader,
937                 'title': video_title,
938                 'age_limit': age_limit,
939             })
940
941         if len(entries) == 1:
942             return entries[0]
943         else:
944             for num, e in enumerate(entries, start=1):
945                 e['title'] = '%s (%d)' % (e['title'], num)
946             return {
947                 '_type': 'playlist',
948                 'entries': entries,
949             }
950