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.

470 lines
19 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. ]
  115. def report_download_webpage(self, video_id):
  116. """Report webpage download."""
  117. if not self._downloader.params.get('test', False):
  118. self._downloader.report_warning('Falling back on generic information extractor.')
  119. super(GenericIE, self).report_download_webpage(video_id)
  120. def report_following_redirect(self, new_url):
  121. """Report information extraction."""
  122. self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
  123. def _send_head(self, url):
  124. """Check if it is a redirect, like url shorteners, in case return the new url."""
  125. class HEADRedirectHandler(compat_urllib_request.HTTPRedirectHandler):
  126. """
  127. Subclass the HTTPRedirectHandler to make it use our
  128. HEADRequest also on the redirected URL
  129. """
  130. def redirect_request(self, req, fp, code, msg, headers, newurl):
  131. if code in (301, 302, 303, 307):
  132. newurl = newurl.replace(' ', '%20')
  133. newheaders = dict((k,v) for k,v in req.headers.items()
  134. if k.lower() not in ("content-length", "content-type"))
  135. return HEADRequest(newurl,
  136. headers=newheaders,
  137. origin_req_host=req.get_origin_req_host(),
  138. unverifiable=True)
  139. else:
  140. raise compat_urllib_error.HTTPError(req.get_full_url(), code, msg, headers, fp)
  141. class HTTPMethodFallback(compat_urllib_request.BaseHandler):
  142. """
  143. Fallback to GET if HEAD is not allowed (405 HTTP error)
  144. """
  145. def http_error_405(self, req, fp, code, msg, headers):
  146. fp.read()
  147. fp.close()
  148. newheaders = dict((k,v) for k,v in req.headers.items()
  149. if k.lower() not in ("content-length", "content-type"))
  150. return self.parent.open(compat_urllib_request.Request(req.get_full_url(),
  151. headers=newheaders,
  152. origin_req_host=req.get_origin_req_host(),
  153. unverifiable=True))
  154. # Build our opener
  155. opener = compat_urllib_request.OpenerDirector()
  156. for handler in [compat_urllib_request.HTTPHandler, compat_urllib_request.HTTPDefaultErrorHandler,
  157. HTTPMethodFallback, HEADRedirectHandler,
  158. compat_urllib_request.HTTPErrorProcessor, compat_urllib_request.HTTPSHandler]:
  159. opener.add_handler(handler())
  160. response = opener.open(HEADRequest(url))
  161. if response is None:
  162. raise ExtractorError('Invalid URL protocol')
  163. return response
  164. def _extract_rss(self, url, video_id, doc):
  165. playlist_title = doc.find('./channel/title').text
  166. playlist_desc_el = doc.find('./channel/description')
  167. playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
  168. entries = [{
  169. '_type': 'url',
  170. 'url': e.find('link').text,
  171. 'title': e.find('title').text,
  172. } for e in doc.findall('./channel/item')]
  173. return {
  174. '_type': 'playlist',
  175. 'id': url,
  176. 'title': playlist_title,
  177. 'description': playlist_desc,
  178. 'entries': entries,
  179. }
  180. def _real_extract(self, url):
  181. parsed_url = compat_urlparse.urlparse(url)
  182. if not parsed_url.scheme:
  183. default_search = self._downloader.params.get('default_search')
  184. if default_search is None:
  185. default_search = 'auto'
  186. if default_search == 'auto':
  187. if '/' in url:
  188. self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
  189. return self.url_result('http://' + url)
  190. else:
  191. return self.url_result('ytsearch:' + url)
  192. else:
  193. assert ':' in default_search
  194. return self.url_result(default_search + url)
  195. video_id = os.path.splitext(url.split('/')[-1])[0]
  196. self.to_screen('%s: Requesting header' % video_id)
  197. try:
  198. response = self._send_head(url)
  199. # Check for redirect
  200. new_url = response.geturl()
  201. if url != new_url:
  202. self.report_following_redirect(new_url)
  203. return self.url_result(new_url)
  204. # Check for direct link to a video
  205. content_type = response.headers.get('Content-Type', '')
  206. m = re.match(r'^(?P<type>audio|video|application(?=/ogg$))/(?P<format_id>.+)$', content_type)
  207. if m:
  208. upload_date = response.headers.get('Last-Modified')
  209. if upload_date:
  210. upload_date = unified_strdate(upload_date)
  211. return {
  212. 'id': video_id,
  213. 'title': os.path.splitext(url_basename(url))[0],
  214. 'formats': [{
  215. 'format_id': m.group('format_id'),
  216. 'url': url,
  217. 'vcodec': 'none' if m.group('type') == 'audio' else None
  218. }],
  219. 'upload_date': upload_date,
  220. }
  221. except compat_urllib_error.HTTPError:
  222. # This may be a stupid server that doesn't like HEAD, our UA, or so
  223. pass
  224. try:
  225. webpage = self._download_webpage(url, video_id)
  226. except ValueError:
  227. # since this is the last-resort InfoExtractor, if
  228. # this error is thrown, it'll be thrown here
  229. raise ExtractorError('Failed to download URL: %s' % url)
  230. self.report_extraction(video_id)
  231. # Is it an RSS feed?
  232. try:
  233. doc = xml.etree.ElementTree.fromstring(webpage.encode('utf-8'))
  234. if doc.tag == 'rss':
  235. return self._extract_rss(url, video_id, doc)
  236. except compat_xml_parse_error:
  237. pass
  238. # it's tempting to parse this further, but you would
  239. # have to take into account all the variations like
  240. # Video Title - Site Name
  241. # Site Name | Video Title
  242. # Video Title - Tagline | Site Name
  243. # and so on and so forth; it's just not practical
  244. video_title = self._html_search_regex(
  245. r'(?s)<title>(.*?)</title>', webpage, 'video title',
  246. default='video')
  247. # video uploader is domain name
  248. video_uploader = self._search_regex(
  249. r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
  250. # Look for BrightCove:
  251. bc_urls = BrightcoveIE._extract_brightcove_urls(webpage)
  252. if bc_urls:
  253. self.to_screen('Brightcove video detected.')
  254. entries = [{
  255. '_type': 'url',
  256. 'url': smuggle_url(bc_url, {'Referer': url}),
  257. 'ie_key': 'Brightcove'
  258. } for bc_url in bc_urls]
  259. return {
  260. '_type': 'playlist',
  261. 'title': video_title,
  262. 'id': video_id,
  263. 'entries': entries,
  264. }
  265. # Look for embedded (iframe) Vimeo player
  266. mobj = re.search(
  267. r'<iframe[^>]+?src="((?:https?:)?//player\.vimeo\.com/video/.+?)"', webpage)
  268. if mobj:
  269. player_url = unescapeHTML(mobj.group(1))
  270. surl = smuggle_url(player_url, {'Referer': url})
  271. return self.url_result(surl, 'Vimeo')
  272. # Look for embedded (swf embed) Vimeo player
  273. mobj = re.search(
  274. r'<embed[^>]+?src="(https?://(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
  275. if mobj:
  276. return self.url_result(mobj.group(1), 'Vimeo')
  277. # Look for embedded YouTube player
  278. matches = re.findall(r'''(?x)
  279. (?:<iframe[^>]+?src=|embedSWF\(\s*)
  280. (["\'])(?P<url>(?:https?:)?//(?:www\.)?youtube\.com/
  281. (?:embed|v)/.+?)
  282. \1''', webpage)
  283. if matches:
  284. urlrs = [self.url_result(unescapeHTML(tuppl[1]), 'Youtube')
  285. for tuppl in matches]
  286. return self.playlist_result(
  287. urlrs, playlist_id=video_id, playlist_title=video_title)
  288. # Look for embedded Dailymotion player
  289. matches = re.findall(
  290. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/embed/video/.+?)\1', webpage)
  291. if matches:
  292. urlrs = [self.url_result(unescapeHTML(tuppl[1]), 'Dailymotion')
  293. for tuppl in matches]
  294. return self.playlist_result(
  295. urlrs, playlist_id=video_id, playlist_title=video_title)
  296. # Look for embedded Wistia player
  297. match = re.search(
  298. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
  299. if match:
  300. return {
  301. '_type': 'url_transparent',
  302. 'url': unescapeHTML(match.group('url')),
  303. 'ie_key': 'Wistia',
  304. 'uploader': video_uploader,
  305. 'title': video_title,
  306. 'id': video_id,
  307. }
  308. # Look for embedded blip.tv player
  309. mobj = re.search(r'<meta\s[^>]*https?://api\.blip\.tv/\w+/redirect/\w+/(\d+)', webpage)
  310. if mobj:
  311. return self.url_result('http://blip.tv/a/a-'+mobj.group(1), 'BlipTV')
  312. mobj = re.search(r'<(?:iframe|embed|object)\s[^>]*(https?://(?:\w+\.)?blip\.tv/(?:play/|api\.swf#)[a-zA-Z0-9]+)', webpage)
  313. if mobj:
  314. return self.url_result(mobj.group(1), 'BlipTV')
  315. # Look for Bandcamp pages with custom domain
  316. mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
  317. if mobj is not None:
  318. burl = unescapeHTML(mobj.group(1))
  319. # Don't set the extractor because it can be a track url or an album
  320. return self.url_result(burl)
  321. # Look for embedded Vevo player
  322. mobj = re.search(
  323. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
  324. if mobj is not None:
  325. return self.url_result(mobj.group('url'))
  326. # Look for Ooyala videos
  327. mobj = re.search(r'player.ooyala.com/[^"?]+\?[^"]*?(?:embedCode|ec)=([^"&]+)', webpage)
  328. if mobj is not None:
  329. return OoyalaIE._build_url_result(mobj.group(1))
  330. # Look for Aparat videos
  331. mobj = re.search(r'<iframe src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
  332. if mobj is not None:
  333. return self.url_result(mobj.group(1), 'Aparat')
  334. # Look for MPORA videos
  335. mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
  336. if mobj is not None:
  337. return self.url_result(mobj.group(1), 'Mpora')
  338. # Look for embedded NovaMov player
  339. mobj = re.search(
  340. r'<iframe[^>]+?src=(["\'])(?P<url>http://(?:(?:embed|www)\.)?novamov\.com/embed\.php.+?)\1', webpage)
  341. if mobj is not None:
  342. return self.url_result(mobj.group('url'), 'NovaMov')
  343. # Look for embedded NowVideo player
  344. mobj = re.search(
  345. r'<iframe[^>]+?src=(["\'])(?P<url>http://(?:(?:embed|www)\.)?nowvideo\.(?:ch|sx|eu)/embed\.php.+?)\1', webpage)
  346. if mobj is not None:
  347. return self.url_result(mobj.group('url'), 'NowVideo')
  348. # Look for embedded Facebook player
  349. mobj = re.search(
  350. r'<iframe[^>]+?src=(["\'])(?P<url>https://www\.facebook\.com/video/embed.+?)\1', webpage)
  351. if mobj is not None:
  352. return self.url_result(mobj.group('url'), 'Facebook')
  353. # Look for embedded VK player
  354. mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
  355. if mobj is not None:
  356. return self.url_result(mobj.group('url'), 'VK')
  357. # Look for embedded Huffington Post player
  358. mobj = re.search(
  359. r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
  360. if mobj is not None:
  361. return self.url_result(mobj.group('url'), 'HuffPost')
  362. # Start with something easy: JW Player in SWFObject
  363. mobj = re.search(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage)
  364. if mobj is None:
  365. # Look for gorilla-vid style embedding
  366. mobj = re.search(r'(?s)(?:jw_plugins|JWPlayerOptions).*?file\s*:\s*["\'](.*?)["\']', webpage)
  367. if mobj is None:
  368. # Broaden the search a little bit
  369. mobj = re.search(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage)
  370. if mobj is None:
  371. # Broaden the search a little bit: JWPlayer JS loader
  372. mobj = re.search(r'[^A-Za-z0-9]?file["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage)
  373. if mobj is None:
  374. # Try to find twitter cards info
  375. mobj = re.search(r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage)
  376. if mobj is None:
  377. # We look for Open Graph info:
  378. # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
  379. m_video_type = re.search(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
  380. # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
  381. if m_video_type is not None:
  382. mobj = re.search(r'<meta.*?property="og:video".*?content="(.*?)"', webpage)
  383. if mobj is None:
  384. # HTML5 video
  385. mobj = re.search(r'<video[^<]*(?:>.*?<source.*?)? src="([^"]+)"', webpage, flags=re.DOTALL)
  386. if mobj is None:
  387. mobj = re.search(
  388. r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
  389. r'(?:[a-z-]+="[^"]+"\s+)*?content="[0-9]{,2};url=\'([^\']+)\'"',
  390. webpage)
  391. if mobj:
  392. new_url = mobj.group(1)
  393. self.report_following_redirect(new_url)
  394. return {
  395. '_type': 'url',
  396. 'url': new_url,
  397. }
  398. if mobj is None:
  399. raise ExtractorError('Unsupported URL: %s' % url)
  400. # It's possible that one of the regexes
  401. # matched, but returned an empty group:
  402. if mobj.group(1) is None:
  403. raise ExtractorError('Did not find a valid video URL at %s' % url)
  404. video_url = mobj.group(1)
  405. video_url = compat_urlparse.urljoin(url, video_url)
  406. video_id = compat_urllib_parse.unquote(os.path.basename(video_url))
  407. # Sometimes, jwplayer extraction will result in a YouTube URL
  408. if YoutubeIE.suitable(video_url):
  409. return self.url_result(video_url, 'Youtube')
  410. # here's a fun little line of code for you:
  411. video_id = os.path.splitext(video_id)[0]
  412. return {
  413. 'id': video_id,
  414. 'url': video_url,
  415. 'uploader': video_uploader,
  416. 'title': video_title,
  417. }