[generic] Add all test attributes for embedly (#2447)
[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 import xml.etree.ElementTree
8
9 from .common import InfoExtractor
10 from .youtube import YoutubeIE
11 from ..utils import (
12     compat_urllib_error,
13     compat_urllib_parse,
14     compat_urllib_request,
15     compat_urlparse,
16     compat_xml_parse_error,
17
18     ExtractorError,
19     HEADRequest,
20     smuggle_url,
21     unescapeHTML,
22     unified_strdate,
23     url_basename,
24 )
25 from .brightcove import BrightcoveIE
26 from .ooyala import OoyalaIE
27
28
29 class GenericIE(InfoExtractor):
30     IE_DESC = 'Generic downloader that works on some sites'
31     _VALID_URL = r'.*'
32     IE_NAME = 'generic'
33     _TESTS = [
34         {
35             'url': 'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html',
36             'file': '13601338388002.mp4',
37             'md5': '6e15c93721d7ec9e9ca3fdbf07982cfd',
38             'info_dict': {
39                 'uploader': 'www.hodiho.fr',
40                 'title': 'R\u00e9gis plante sa Jeep',
41             }
42         },
43         # bandcamp page with custom domain
44         {
45             'add_ie': ['Bandcamp'],
46             'url': 'http://bronyrock.com/track/the-pony-mash',
47             'file': '3235767654.mp3',
48             'info_dict': {
49                 'title': 'The Pony Mash',
50                 'uploader': 'M_Pallante',
51             },
52             'skip': 'There is a limit of 200 free downloads / month for the test song',
53         },
54         # embedded brightcove video
55         # it also tests brightcove videos that need to set the 'Referer' in the
56         # http requests
57         {
58             'add_ie': ['Brightcove'],
59             'url': 'http://www.bfmtv.com/video/bfmbusiness/cours-bourse/cours-bourse-l-analyse-technique-154522/',
60             'info_dict': {
61                 'id': '2765128793001',
62                 'ext': 'mp4',
63                 'title': 'Le cours de bourse : l’analyse technique',
64                 'description': 'md5:7e9ad046e968cb2d1114004aba466fd9',
65                 'uploader': 'BFM BUSINESS',
66             },
67             'params': {
68                 'skip_download': True,
69             },
70         },
71         {
72             # https://github.com/rg3/youtube-dl/issues/2253
73             'url': 'http://bcove.me/i6nfkrc3',
74             'file': '3101154703001.mp4',
75             'md5': '0ba9446db037002366bab3b3eb30c88c',
76             'info_dict': {
77                 'title': 'Still no power',
78                 'uploader': 'thestar.com',
79                 '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.',
80             },
81             'add_ie': ['Brightcove'],
82         },
83         # Direct link to a video
84         {
85             'url': 'http://media.w3.org/2010/05/sintel/trailer.mp4',
86             'md5': '67d406c2bcb6af27fa886f31aa934bbe',
87             'info_dict': {
88                 'id': 'trailer',
89                 'ext': 'mp4',
90                 'title': 'trailer',
91                 'upload_date': '20100513',
92             }
93         },
94         # ooyala video
95         {
96             'url': 'http://www.rollingstone.com/music/videos/norwegian-dj-cashmere-cat-goes-spartan-on-with-me-premiere-20131219',
97             'md5': '5644c6ca5d5782c1d0d350dad9bd840c',
98             'info_dict': {
99                 'id': 'BwY2RxaTrTkslxOfcan0UCf0YqyvWysJ',
100                 'ext': 'mp4',
101                 'title': '2cc213299525360.mov',  # that's what we get
102             },
103         },
104         # google redirect
105         {
106             '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',
107             'info_dict': {
108                 'id': 'cmQHVoWB5FY',
109                 'ext': 'mp4',
110                 'upload_date': '20130224',
111                 'uploader_id': 'TheVerge',
112                 '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.',
113                 'uploader': 'The Verge',
114                 'title': 'First Firefox OS phones side-by-side',
115             },
116             'params': {
117                 'skip_download': False,
118             }
119         },
120         # embed.ly video
121         {
122             'url': 'http://www.tested.com/science/weird/460206-tested-grinding-coffee-2000-frames-second/',
123             'info_dict': {
124                 'id': '9ODmcdjQcHQ',
125                 'ext': 'mp4',
126                 'title': 'Tested: Grinding Coffee at 2000 Frames Per Second',
127                 'upload_date': '20140225',
128                 'description': 'md5:06a40fbf30b220468f1e0957c0f558ff',
129                 'uploader': 'Tested',
130                 'uploader_id': 'testedcom',
131             },
132             # No need to test YoutubeIE here
133             'params': {
134                 'skip_download': True,
135             },
136         },
137     ]
138
139     def report_download_webpage(self, video_id):
140         """Report webpage download."""
141         if not self._downloader.params.get('test', False):
142             self._downloader.report_warning('Falling back on generic information extractor.')
143         super(GenericIE, self).report_download_webpage(video_id)
144
145     def report_following_redirect(self, new_url):
146         """Report information extraction."""
147         self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
148
149     def _send_head(self, url):
150         """Check if it is a redirect, like url shorteners, in case return the new url."""
151
152         class HEADRedirectHandler(compat_urllib_request.HTTPRedirectHandler):
153             """
154             Subclass the HTTPRedirectHandler to make it use our
155             HEADRequest also on the redirected URL
156             """
157             def redirect_request(self, req, fp, code, msg, headers, newurl):
158                 if code in (301, 302, 303, 307):
159                     newurl = newurl.replace(' ', '%20')
160                     newheaders = dict((k,v) for k,v in req.headers.items()
161                                       if k.lower() not in ("content-length", "content-type"))
162                     return HEADRequest(newurl,
163                                        headers=newheaders,
164                                        origin_req_host=req.get_origin_req_host(),
165                                        unverifiable=True)
166                 else:
167                     raise compat_urllib_error.HTTPError(req.get_full_url(), code, msg, headers, fp)
168
169         class HTTPMethodFallback(compat_urllib_request.BaseHandler):
170             """
171             Fallback to GET if HEAD is not allowed (405 HTTP error)
172             """
173             def http_error_405(self, req, fp, code, msg, headers):
174                 fp.read()
175                 fp.close()
176
177                 newheaders = dict((k,v) for k,v in req.headers.items()
178                                   if k.lower() not in ("content-length", "content-type"))
179                 return self.parent.open(compat_urllib_request.Request(req.get_full_url(),
180                                                  headers=newheaders,
181                                                  origin_req_host=req.get_origin_req_host(),
182                                                  unverifiable=True))
183
184         # Build our opener
185         opener = compat_urllib_request.OpenerDirector()
186         for handler in [compat_urllib_request.HTTPHandler, compat_urllib_request.HTTPDefaultErrorHandler,
187                         HTTPMethodFallback, HEADRedirectHandler,
188                         compat_urllib_request.HTTPErrorProcessor, compat_urllib_request.HTTPSHandler]:
189             opener.add_handler(handler())
190
191         response = opener.open(HEADRequest(url))
192         if response is None:
193             raise ExtractorError('Invalid URL protocol')
194         return response
195
196     def _extract_rss(self, url, video_id, doc):
197         playlist_title = doc.find('./channel/title').text
198         playlist_desc_el = doc.find('./channel/description')
199         playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
200
201         entries = [{
202             '_type': 'url',
203             'url': e.find('link').text,
204             'title': e.find('title').text,
205         } for e in doc.findall('./channel/item')]
206
207         return {
208             '_type': 'playlist',
209             'id': url,
210             'title': playlist_title,
211             'description': playlist_desc,
212             'entries': entries,
213         }
214
215     def _real_extract(self, url):
216         parsed_url = compat_urlparse.urlparse(url)
217         if not parsed_url.scheme:
218             default_search = self._downloader.params.get('default_search')
219             if default_search is None:
220                 default_search = 'auto'
221
222             if default_search == 'auto':
223                 if '/' in url:
224                     self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
225                     return self.url_result('http://' + url)
226                 else:
227                     return self.url_result('ytsearch:' + url)
228             else:
229                 assert ':' in default_search
230                 return self.url_result(default_search + url)
231         video_id = os.path.splitext(url.rstrip('/').split('/')[-1])[0]
232
233         self.to_screen('%s: Requesting header' % video_id)
234
235         try:
236             response = self._send_head(url)
237
238             # Check for redirect
239             new_url = response.geturl()
240             if url != new_url:
241                 self.report_following_redirect(new_url)
242                 return self.url_result(new_url)
243
244             # Check for direct link to a video
245             content_type = response.headers.get('Content-Type', '')
246             m = re.match(r'^(?P<type>audio|video|application(?=/ogg$))/(?P<format_id>.+)$', content_type)
247             if m:
248                 upload_date = response.headers.get('Last-Modified')
249                 if upload_date:
250                     upload_date = unified_strdate(upload_date)
251                 return {
252                     'id': video_id,
253                     'title': os.path.splitext(url_basename(url))[0],
254                     'formats': [{
255                         'format_id': m.group('format_id'),
256                         'url': url,
257                         'vcodec': 'none' if m.group('type') == 'audio' else None
258                     }],
259                     'upload_date': upload_date,
260                 }
261
262         except compat_urllib_error.HTTPError:
263             # This may be a stupid server that doesn't like HEAD, our UA, or so
264             pass
265
266         try:
267             webpage = self._download_webpage(url, video_id)
268         except ValueError:
269             # since this is the last-resort InfoExtractor, if
270             # this error is thrown, it'll be thrown here
271             raise ExtractorError('Failed to download URL: %s' % url)
272
273         self.report_extraction(video_id)
274
275         # Is it an RSS feed?
276         try:
277             doc = xml.etree.ElementTree.fromstring(webpage.encode('utf-8'))
278             if doc.tag == 'rss':
279                 return self._extract_rss(url, video_id, doc)
280         except compat_xml_parse_error:
281             pass
282
283         # it's tempting to parse this further, but you would
284         # have to take into account all the variations like
285         #   Video Title - Site Name
286         #   Site Name | Video Title
287         #   Video Title - Tagline | Site Name
288         # and so on and so forth; it's just not practical
289         video_title = self._html_search_regex(
290             r'(?s)<title>(.*?)</title>', webpage, 'video title',
291             default='video')
292
293         # video uploader is domain name
294         video_uploader = self._search_regex(
295             r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
296
297         # Look for BrightCove:
298         bc_urls = BrightcoveIE._extract_brightcove_urls(webpage)
299         if bc_urls:
300             self.to_screen('Brightcove video detected.')
301             entries = [{
302                 '_type': 'url',
303                 'url': smuggle_url(bc_url, {'Referer': url}),
304                 'ie_key': 'Brightcove'
305             } for bc_url in bc_urls]
306
307             return {
308                 '_type': 'playlist',
309                 'title': video_title,
310                 'id': video_id,
311                 'entries': entries,
312             }
313
314         # Look for embedded (iframe) Vimeo player
315         mobj = re.search(
316             r'<iframe[^>]+?src="((?:https?:)?//player\.vimeo\.com/video/.+?)"', webpage)
317         if mobj:
318             player_url = unescapeHTML(mobj.group(1))
319             surl = smuggle_url(player_url, {'Referer': url})
320             return self.url_result(surl, 'Vimeo')
321
322         # Look for embedded (swf embed) Vimeo player
323         mobj = re.search(
324             r'<embed[^>]+?src="(https?://(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
325         if mobj:
326             return self.url_result(mobj.group(1), 'Vimeo')
327
328         # Look for embedded YouTube player
329         matches = re.findall(r'''(?x)
330             (?:<iframe[^>]+?src=|embedSWF\(\s*)
331             (["\'])(?P<url>(?:https?:)?//(?:www\.)?youtube\.com/
332                 (?:embed|v)/.+?)
333             \1''', webpage)
334         if matches:
335             urlrs = [self.url_result(unescapeHTML(tuppl[1]), 'Youtube')
336                      for tuppl in matches]
337             return self.playlist_result(
338                 urlrs, playlist_id=video_id, playlist_title=video_title)
339
340         # Look for embedded Dailymotion player
341         matches = re.findall(
342             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/embed/video/.+?)\1', webpage)
343         if matches:
344             urlrs = [self.url_result(unescapeHTML(tuppl[1]), 'Dailymotion')
345                      for tuppl in matches]
346             return self.playlist_result(
347                 urlrs, playlist_id=video_id, playlist_title=video_title)
348
349         # Look for embedded Wistia player
350         match = re.search(
351             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
352         if match:
353             return {
354                 '_type': 'url_transparent',
355                 'url': unescapeHTML(match.group('url')),
356                 'ie_key': 'Wistia',
357                 'uploader': video_uploader,
358                 'title': video_title,
359                 'id': video_id,
360             }
361
362         # Look for embedded blip.tv player
363         mobj = re.search(r'<meta\s[^>]*https?://api\.blip\.tv/\w+/redirect/\w+/(\d+)', webpage)
364         if mobj:
365             return self.url_result('http://blip.tv/a/a-'+mobj.group(1), 'BlipTV')
366         mobj = re.search(r'<(?:iframe|embed|object)\s[^>]*(https?://(?:\w+\.)?blip\.tv/(?:play/|api\.swf#)[a-zA-Z0-9]+)', webpage)
367         if mobj:
368             return self.url_result(mobj.group(1), 'BlipTV')
369
370         # Look for Bandcamp pages with custom domain
371         mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
372         if mobj is not None:
373             burl = unescapeHTML(mobj.group(1))
374             # Don't set the extractor because it can be a track url or an album
375             return self.url_result(burl)
376
377         # Look for embedded Vevo player
378         mobj = re.search(
379             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
380         if mobj is not None:
381             return self.url_result(mobj.group('url'))
382
383         # Look for Ooyala videos
384         mobj = re.search(r'player.ooyala.com/[^"?]+\?[^"]*?(?:embedCode|ec)=([^"&]+)', webpage)
385         if mobj is not None:
386             return OoyalaIE._build_url_result(mobj.group(1))
387
388         # Look for Aparat videos
389         mobj = re.search(r'<iframe src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
390         if mobj is not None:
391             return self.url_result(mobj.group(1), 'Aparat')
392
393         # Look for MPORA videos
394         mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
395         if mobj is not None:
396             return self.url_result(mobj.group(1), 'Mpora')
397
398         # Look for embedded NovaMov player
399         mobj = re.search(
400             r'<iframe[^>]+?src=(["\'])(?P<url>http://(?:(?:embed|www)\.)?novamov\.com/embed\.php.+?)\1', webpage)
401         if mobj is not None:
402             return self.url_result(mobj.group('url'), 'NovaMov')
403
404         # Look for embedded NowVideo player
405         mobj = re.search(
406             r'<iframe[^>]+?src=(["\'])(?P<url>http://(?:(?:embed|www)\.)?nowvideo\.(?:ch|sx|eu)/embed\.php.+?)\1', webpage)
407         if mobj is not None:
408             return self.url_result(mobj.group('url'), 'NowVideo')
409
410         # Look for embedded Facebook player
411         mobj = re.search(
412             r'<iframe[^>]+?src=(["\'])(?P<url>https://www\.facebook\.com/video/embed.+?)\1', webpage)
413         if mobj is not None:
414             return self.url_result(mobj.group('url'), 'Facebook')
415
416         # Look for embedded VK player
417         mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
418         if mobj is not None:
419             return self.url_result(mobj.group('url'), 'VK')
420
421         # Look for embedded Huffington Post player
422         mobj = re.search(
423             r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
424         if mobj is not None:
425             return self.url_result(mobj.group('url'), 'HuffPost')
426
427         # Look for embed.ly
428         mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
429         if mobj is not None:
430             return self.url_result(mobj.group('url'))
431         mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
432         if mobj is not None:
433             return self.url_result(compat_urllib_parse.unquote(mobj.group('url')))
434
435         # Start with something easy: JW Player in SWFObject
436         mobj = re.search(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage)
437         if mobj is None:
438             # Look for gorilla-vid style embedding
439             mobj = re.search(r'(?s)(?:jw_plugins|JWPlayerOptions).*?file\s*:\s*["\'](.*?)["\']', webpage)
440         if mobj is None:
441             # Broaden the search a little bit
442             mobj = re.search(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage)
443         if mobj is None:
444             # Broaden the search a little bit: JWPlayer JS loader
445             mobj = re.search(r'[^A-Za-z0-9]?file["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage)
446         if mobj is None:
447             # Try to find twitter cards info
448             mobj = re.search(r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage)
449         if mobj is None:
450             # We look for Open Graph info:
451             # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
452             m_video_type = re.search(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
453             # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
454             if m_video_type is not None:
455                 mobj = re.search(r'<meta.*?property="og:video".*?content="(.*?)"', webpage)
456         if mobj is None:
457             # HTML5 video
458             mobj = re.search(r'<video[^<]*(?:>.*?<source.*?)? src="([^"]+)"', webpage, flags=re.DOTALL)
459         if mobj is None:
460             mobj = re.search(
461                 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
462                 r'(?:[a-z-]+="[^"]+"\s+)*?content="[0-9]{,2};url=\'([^\']+)\'"',
463                 webpage)
464             if mobj:
465                 new_url = mobj.group(1)
466                 self.report_following_redirect(new_url)
467                 return {
468                     '_type': 'url',
469                     'url': new_url,
470                 }
471         if mobj is None:
472             raise ExtractorError('Unsupported URL: %s' % url)
473
474         # It's possible that one of the regexes
475         # matched, but returned an empty group:
476         if mobj.group(1) is None:
477             raise ExtractorError('Did not find a valid video URL at %s' % url)
478
479         video_url = mobj.group(1)
480         video_url = compat_urlparse.urljoin(url, video_url)
481         video_id = compat_urllib_parse.unquote(os.path.basename(video_url))
482
483         # Sometimes, jwplayer extraction will result in a YouTube URL
484         if YoutubeIE.suitable(video_url):
485             return self.url_result(video_url, 'Youtube')
486
487         # here's a fun little line of code for you:
488         video_id = os.path.splitext(video_id)[0]
489
490         return {
491             'id': video_id,
492             'url': video_url,
493             'uploader': video_uploader,
494             'title': video_title,
495         }