You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

490 lines
20 KiB

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