generic.py 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. import os
  4. import re
  5. from .common import InfoExtractor
  6. from .youtube import YoutubeIE
  7. from ..utils import (
  8. compat_urllib_error,
  9. compat_urllib_parse,
  10. compat_urllib_request,
  11. compat_urlparse,
  12. compat_xml_parse_error,
  13. ExtractorError,
  14. HEADRequest,
  15. parse_xml,
  16. smuggle_url,
  17. unescapeHTML,
  18. unified_strdate,
  19. url_basename,
  20. )
  21. from .brightcove import BrightcoveIE
  22. from .ooyala import OoyalaIE
  23. from .rutv import RUTVIE
  24. from .smotri import SmotriIE
  25. class GenericIE(InfoExtractor):
  26. IE_DESC = 'Generic downloader that works on some sites'
  27. _VALID_URL = r'.*'
  28. IE_NAME = 'generic'
  29. _TESTS = [
  30. {
  31. 'url': 'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html',
  32. 'md5': '85b90ccc9d73b4acd9138d3af4c27f89',
  33. 'info_dict': {
  34. 'id': '13601338388002',
  35. 'ext': 'mp4',
  36. 'uploader': 'www.hodiho.fr',
  37. 'title': 'R\u00e9gis plante sa Jeep',
  38. }
  39. },
  40. # bandcamp page with custom domain
  41. {
  42. 'add_ie': ['Bandcamp'],
  43. 'url': 'http://bronyrock.com/track/the-pony-mash',
  44. 'info_dict': {
  45. 'id': '3235767654',
  46. 'ext': 'mp3',
  47. 'title': 'The Pony Mash',
  48. 'uploader': 'M_Pallante',
  49. },
  50. 'skip': 'There is a limit of 200 free downloads / month for the test song',
  51. },
  52. # embedded brightcove video
  53. # it also tests brightcove videos that need to set the 'Referer' in the
  54. # http requests
  55. {
  56. 'add_ie': ['Brightcove'],
  57. 'url': 'http://www.bfmtv.com/video/bfmbusiness/cours-bourse/cours-bourse-l-analyse-technique-154522/',
  58. 'info_dict': {
  59. 'id': '2765128793001',
  60. 'ext': 'mp4',
  61. 'title': 'Le cours de bourse : l’analyse technique',
  62. 'description': 'md5:7e9ad046e968cb2d1114004aba466fd9',
  63. 'uploader': 'BFM BUSINESS',
  64. },
  65. 'params': {
  66. 'skip_download': True,
  67. },
  68. },
  69. {
  70. # https://github.com/rg3/youtube-dl/issues/2253
  71. 'url': 'http://bcove.me/i6nfkrc3',
  72. 'md5': '0ba9446db037002366bab3b3eb30c88c',
  73. 'info_dict': {
  74. 'id': '3101154703001',
  75. 'ext': 'mp4',
  76. 'title': 'Still no power',
  77. 'uploader': 'thestar.com',
  78. '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.',
  79. },
  80. 'add_ie': ['Brightcove'],
  81. },
  82. {
  83. 'url': 'http://www.championat.com/video/football/v/87/87499.html',
  84. 'md5': 'fb973ecf6e4a78a67453647444222983',
  85. 'info_dict': {
  86. 'id': '3414141473001',
  87. 'ext': 'mp4',
  88. 'title': 'Видео. Удаление Дзагоева (ЦСКА)',
  89. 'description': 'Онлайн-трансляция матча ЦСКА - "Волга"',
  90. 'uploader': 'Championat',
  91. },
  92. },
  93. # Direct link to a video
  94. {
  95. 'url': 'http://media.w3.org/2010/05/sintel/trailer.mp4',
  96. 'md5': '67d406c2bcb6af27fa886f31aa934bbe',
  97. 'info_dict': {
  98. 'id': 'trailer',
  99. 'ext': 'mp4',
  100. 'title': 'trailer',
  101. 'upload_date': '20100513',
  102. }
  103. },
  104. # ooyala video
  105. {
  106. 'url': 'http://www.rollingstone.com/music/videos/norwegian-dj-cashmere-cat-goes-spartan-on-with-me-premiere-20131219',
  107. 'md5': '5644c6ca5d5782c1d0d350dad9bd840c',
  108. 'info_dict': {
  109. 'id': 'BwY2RxaTrTkslxOfcan0UCf0YqyvWysJ',
  110. 'ext': 'mp4',
  111. 'title': '2cc213299525360.mov', # that's what we get
  112. },
  113. },
  114. # google redirect
  115. {
  116. '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',
  117. 'info_dict': {
  118. 'id': 'cmQHVoWB5FY',
  119. 'ext': 'mp4',
  120. 'upload_date': '20130224',
  121. 'uploader_id': 'TheVerge',
  122. '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.',
  123. 'uploader': 'The Verge',
  124. 'title': 'First Firefox OS phones side-by-side',
  125. },
  126. 'params': {
  127. 'skip_download': False,
  128. }
  129. },
  130. # embed.ly video
  131. {
  132. 'url': 'http://www.tested.com/science/weird/460206-tested-grinding-coffee-2000-frames-second/',
  133. 'info_dict': {
  134. 'id': '9ODmcdjQcHQ',
  135. 'ext': 'mp4',
  136. 'title': 'Tested: Grinding Coffee at 2000 Frames Per Second',
  137. 'upload_date': '20140225',
  138. 'description': 'md5:06a40fbf30b220468f1e0957c0f558ff',
  139. 'uploader': 'Tested',
  140. 'uploader_id': 'testedcom',
  141. },
  142. # No need to test YoutubeIE here
  143. 'params': {
  144. 'skip_download': True,
  145. },
  146. },
  147. # funnyordie embed
  148. {
  149. 'url': 'http://www.theguardian.com/world/2014/mar/11/obama-zach-galifianakis-between-two-ferns',
  150. 'md5': '7cf780be104d40fea7bae52eed4a470e',
  151. 'info_dict': {
  152. 'id': '18e820ec3f',
  153. 'ext': 'mp4',
  154. 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama',
  155. 'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',
  156. },
  157. },
  158. # RUTV embed
  159. {
  160. 'url': 'http://www.rg.ru/2014/03/15/reg-dfo/anklav-anons.html',
  161. 'info_dict': {
  162. 'id': '776940',
  163. 'ext': 'mp4',
  164. 'title': 'Охотское море стало целиком российским',
  165. 'description': 'md5:5ed62483b14663e2a95ebbe115eb8f43',
  166. },
  167. 'params': {
  168. # m3u8 download
  169. 'skip_download': True,
  170. },
  171. },
  172. # Embedded TED video
  173. {
  174. 'url': 'http://en.support.wordpress.com/videos/ted-talks/',
  175. 'md5': 'deeeabcc1085eb2ba205474e7235a3d5',
  176. 'info_dict': {
  177. 'id': '981',
  178. 'ext': 'mp4',
  179. 'title': 'My web playroom',
  180. 'uploader': 'Ze Frank',
  181. 'description': 'md5:ddb2a40ecd6b6a147e400e535874947b',
  182. }
  183. },
  184. # Embeded Ustream video
  185. {
  186. 'url': 'http://www.american.edu/spa/pti/nsa-privacy-janus-2014.cfm',
  187. 'md5': '27b99cdb639c9b12a79bca876a073417',
  188. 'info_dict': {
  189. 'id': '45734260',
  190. 'ext': 'flv',
  191. 'uploader': 'AU SPA: The NSA and Privacy',
  192. 'title': 'NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman'
  193. }
  194. },
  195. # nowvideo embed hidden behind percent encoding
  196. {
  197. 'url': 'http://www.waoanime.tv/the-super-dimension-fortress-macross-episode-1/',
  198. 'md5': '2baf4ddd70f697d94b1c18cf796d5107',
  199. 'info_dict': {
  200. 'id': '06e53103ca9aa',
  201. 'ext': 'flv',
  202. 'title': 'Macross Episode 001 Watch Macross Episode 001 onl',
  203. 'description': 'No description',
  204. },
  205. },
  206. # arte embed
  207. {
  208. 'url': 'http://www.tv-replay.fr/redirection/20-03-14/x-enius-arte-10753389.html',
  209. 'md5': '7653032cbb25bf6c80d80f217055fa43',
  210. 'info_dict': {
  211. 'id': '048195-004_PLUS7-F',
  212. 'ext': 'flv',
  213. 'title': 'X:enius',
  214. 'description': 'md5:d5fdf32ef6613cdbfd516ae658abf168',
  215. 'upload_date': '20140320',
  216. },
  217. 'params': {
  218. 'skip_download': 'Requires rtmpdump'
  219. }
  220. },
  221. # smotri embed
  222. {
  223. 'url': 'http://rbctv.rbc.ru/archive/news/562949990879132.shtml',
  224. 'md5': 'ec40048448e9284c9a1de77bb188108b',
  225. 'info_dict': {
  226. 'id': 'v27008541fad',
  227. 'ext': 'mp4',
  228. 'title': 'Крым и Севастополь вошли в состав России',
  229. 'description': 'md5:fae01b61f68984c7bd2fa741e11c3175',
  230. 'duration': 900,
  231. 'upload_date': '20140318',
  232. 'uploader': 'rbctv_2012_4',
  233. 'uploader_id': 'rbctv_2012_4',
  234. },
  235. },
  236. # Condé Nast embed
  237. {
  238. 'url': 'http://www.wired.com/2014/04/honda-asimo/',
  239. 'md5': 'ba0dfe966fa007657bd1443ee672db0f',
  240. 'info_dict': {
  241. 'id': '53501be369702d3275860000',
  242. 'ext': 'mp4',
  243. 'title': 'Honda’s New Asimo Robot Is More Human Than Ever',
  244. }
  245. },
  246. # Dailymotion embed
  247. {
  248. 'url': 'http://www.spi0n.com/zap-spi0n-com-n216/',
  249. 'md5': '441aeeb82eb72c422c7f14ec533999cd',
  250. 'info_dict': {
  251. 'id': 'k2mm4bCdJ6CQ2i7c8o2',
  252. 'ext': 'mp4',
  253. 'title': 'Le Zap de Spi0n n°216 - Zapping du Web',
  254. 'uploader': 'Spi0n',
  255. },
  256. 'add_ie': ['Dailymotion'],
  257. },
  258. # YouTube embed
  259. {
  260. 'url': 'http://www.badzine.de/ansicht/datum/2014/06/09/so-funktioniert-die-neue-englische-badminton-liga.html',
  261. 'info_dict': {
  262. 'id': 'FXRb4ykk4S0',
  263. 'ext': 'mp4',
  264. 'title': 'The NBL Auction 2014',
  265. 'uploader': 'BADMINTON England',
  266. 'uploader_id': 'BADMINTONEvents',
  267. 'upload_date': '20140603',
  268. 'description': 'md5:9ef128a69f1e262a700ed83edb163a73',
  269. },
  270. 'add_ie': ['Youtube'],
  271. 'params': {
  272. 'skip_download': True,
  273. }
  274. },
  275. # MTVSercices embed
  276. {
  277. 'url': 'http://www.gametrailers.com/news-post/76093/north-america-europe-is-getting-that-mario-kart-8-mercedes-dlc-too',
  278. 'md5': '35727f82f58c76d996fc188f9755b0d5',
  279. 'info_dict': {
  280. 'id': '0306a69b-8adf-4fb5-aace-75f8e8cbfca9',
  281. 'ext': 'mp4',
  282. 'title': 'Review',
  283. 'description': 'Mario\'s life in the fast lane has never looked so good.',
  284. },
  285. },
  286. # YouTube embed via <data-embed-url="">
  287. {
  288. 'url': 'https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM',
  289. 'md5': 'c267b1ab6d736057d64babaa37e07a66',
  290. 'info_dict': {
  291. 'id': 'Ybd-qmqYYpA',
  292. 'ext': 'mp4',
  293. 'title': 'Asphalt 8: Airborne - Chinese Great Wall - Android Game Trailer',
  294. 'uploader': 'gameloftandroid',
  295. 'uploader_id': 'gameloftandroid',
  296. 'upload_date': '20140321',
  297. 'description': 'md5:9c6dca5dd75b7131ce482ccf080749d6'
  298. }
  299. }
  300. ]
  301. def report_download_webpage(self, video_id):
  302. """Report webpage download."""
  303. if not self._downloader.params.get('test', False):
  304. self._downloader.report_warning('Falling back on generic information extractor.')
  305. super(GenericIE, self).report_download_webpage(video_id)
  306. def report_following_redirect(self, new_url):
  307. """Report information extraction."""
  308. self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
  309. def _send_head(self, url):
  310. """Check if it is a redirect, like url shorteners, in case return the new url."""
  311. class HEADRedirectHandler(compat_urllib_request.HTTPRedirectHandler):
  312. """
  313. Subclass the HTTPRedirectHandler to make it use our
  314. HEADRequest also on the redirected URL
  315. """
  316. def redirect_request(self, req, fp, code, msg, headers, newurl):
  317. if code in (301, 302, 303, 307):
  318. newurl = newurl.replace(' ', '%20')
  319. newheaders = dict((k,v) for k,v in req.headers.items()
  320. if k.lower() not in ("content-length", "content-type"))
  321. try:
  322. # This function was deprecated in python 3.3 and removed in 3.4
  323. origin_req_host = req.get_origin_req_host()
  324. except AttributeError:
  325. origin_req_host = req.origin_req_host
  326. return HEADRequest(newurl,
  327. headers=newheaders,
  328. origin_req_host=origin_req_host,
  329. unverifiable=True)
  330. else:
  331. raise compat_urllib_error.HTTPError(req.get_full_url(), code, msg, headers, fp)
  332. class HTTPMethodFallback(compat_urllib_request.BaseHandler):
  333. """
  334. Fallback to GET if HEAD is not allowed (405 HTTP error)
  335. """
  336. def http_error_405(self, req, fp, code, msg, headers):
  337. fp.read()
  338. fp.close()
  339. newheaders = dict((k,v) for k,v in req.headers.items()
  340. if k.lower() not in ("content-length", "content-type"))
  341. return self.parent.open(compat_urllib_request.Request(req.get_full_url(),
  342. headers=newheaders,
  343. origin_req_host=req.get_origin_req_host(),
  344. unverifiable=True))
  345. # Build our opener
  346. opener = compat_urllib_request.OpenerDirector()
  347. for handler in [compat_urllib_request.HTTPHandler, compat_urllib_request.HTTPDefaultErrorHandler,
  348. HTTPMethodFallback, HEADRedirectHandler,
  349. compat_urllib_request.HTTPErrorProcessor, compat_urllib_request.HTTPSHandler]:
  350. opener.add_handler(handler())
  351. response = opener.open(HEADRequest(url))
  352. if response is None:
  353. raise ExtractorError('Invalid URL protocol')
  354. return response
  355. def _extract_rss(self, url, video_id, doc):
  356. playlist_title = doc.find('./channel/title').text
  357. playlist_desc_el = doc.find('./channel/description')
  358. playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
  359. entries = [{
  360. '_type': 'url',
  361. 'url': e.find('link').text,
  362. 'title': e.find('title').text,
  363. } for e in doc.findall('./channel/item')]
  364. return {
  365. '_type': 'playlist',
  366. 'id': url,
  367. 'title': playlist_title,
  368. 'description': playlist_desc,
  369. 'entries': entries,
  370. }
  371. def _real_extract(self, url):
  372. if url.startswith('//'):
  373. return {
  374. '_type': 'url',
  375. 'url': self.http_scheme() + url,
  376. }
  377. parsed_url = compat_urlparse.urlparse(url)
  378. if not parsed_url.scheme:
  379. default_search = self._downloader.params.get('default_search')
  380. if default_search is None:
  381. default_search = 'fixup_error'
  382. if default_search in ('auto', 'auto_warning', 'fixup_error'):
  383. if '/' in url:
  384. self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
  385. return self.url_result('http://' + url)
  386. elif default_search != 'fixup_error':
  387. if default_search == 'auto_warning':
  388. if re.match(r'^(?:url|URL)$', url):
  389. raise ExtractorError(
  390. 'Invalid URL: %r . Call youtube-dl like this: youtube-dl -v "https://www.youtube.com/watch?v=BaW_jenozKc" ' % url,
  391. expected=True)
  392. else:
  393. self._downloader.report_warning(
  394. 'Falling back to youtube search for %s . Set --default-search "auto" to suppress this warning.' % url)
  395. return self.url_result('ytsearch:' + url)
  396. if default_search in ('error', 'fixup_error'):
  397. raise ExtractorError(
  398. ('%r is not a valid URL. '
  399. 'Set --default-search "ytsearch" (or run youtube-dl "ytsearch:%s" ) to search YouTube'
  400. ) % (url, url), expected=True)
  401. else:
  402. assert ':' in default_search
  403. return self.url_result(default_search + url)
  404. video_id = os.path.splitext(url.rstrip('/').split('/')[-1])[0]
  405. self.to_screen('%s: Requesting header' % video_id)
  406. try:
  407. response = self._send_head(url)
  408. # Check for redirect
  409. new_url = response.geturl()
  410. if url != new_url:
  411. self.report_following_redirect(new_url)
  412. return self.url_result(new_url)
  413. # Check for direct link to a video
  414. content_type = response.headers.get('Content-Type', '')
  415. m = re.match(r'^(?P<type>audio|video|application(?=/ogg$))/(?P<format_id>.+)$', content_type)
  416. if m:
  417. upload_date = response.headers.get('Last-Modified')
  418. if upload_date:
  419. upload_date = unified_strdate(upload_date)
  420. return {
  421. 'id': video_id,
  422. 'title': os.path.splitext(url_basename(url))[0],
  423. 'formats': [{
  424. 'format_id': m.group('format_id'),
  425. 'url': url,
  426. 'vcodec': 'none' if m.group('type') == 'audio' else None
  427. }],
  428. 'upload_date': upload_date,
  429. }
  430. except compat_urllib_error.HTTPError:
  431. # This may be a stupid server that doesn't like HEAD, our UA, or so
  432. pass
  433. try:
  434. webpage = self._download_webpage(url, video_id)
  435. except ValueError:
  436. # since this is the last-resort InfoExtractor, if
  437. # this error is thrown, it'll be thrown here
  438. raise ExtractorError('Failed to download URL: %s' % url)
  439. self.report_extraction(video_id)
  440. # Is it an RSS feed?
  441. try:
  442. doc = parse_xml(webpage)
  443. if doc.tag == 'rss':
  444. return self._extract_rss(url, video_id, doc)
  445. except compat_xml_parse_error:
  446. pass
  447. # Sometimes embedded video player is hidden behind percent encoding
  448. # (e.g. https://github.com/rg3/youtube-dl/issues/2448)
  449. # Unescaping the whole page allows to handle those cases in a generic way
  450. webpage = compat_urllib_parse.unquote(webpage)
  451. # it's tempting to parse this further, but you would
  452. # have to take into account all the variations like
  453. # Video Title - Site Name
  454. # Site Name | Video Title
  455. # Video Title - Tagline | Site Name
  456. # and so on and so forth; it's just not practical
  457. video_title = self._html_search_regex(
  458. r'(?s)<title>(.*?)</title>', webpage, 'video title',
  459. default='video')
  460. # video uploader is domain name
  461. video_uploader = self._search_regex(
  462. r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
  463. # Look for BrightCove:
  464. bc_urls = BrightcoveIE._extract_brightcove_urls(webpage)
  465. if bc_urls:
  466. self.to_screen('Brightcove video detected.')
  467. entries = [{
  468. '_type': 'url',
  469. 'url': smuggle_url(bc_url, {'Referer': url}),
  470. 'ie_key': 'Brightcove'
  471. } for bc_url in bc_urls]
  472. return {
  473. '_type': 'playlist',
  474. 'title': video_title,
  475. 'id': video_id,
  476. 'entries': entries,
  477. }
  478. # Look for embedded (iframe) Vimeo player
  479. mobj = re.search(
  480. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//player\.vimeo\.com/video/.+?)\1', webpage)
  481. if mobj:
  482. player_url = unescapeHTML(mobj.group('url'))
  483. surl = smuggle_url(player_url, {'Referer': url})
  484. return self.url_result(surl, 'Vimeo')
  485. # Look for embedded (swf embed) Vimeo player
  486. mobj = re.search(
  487. r'<embed[^>]+?src="(https?://(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
  488. if mobj:
  489. return self.url_result(mobj.group(1), 'Vimeo')
  490. # Look for embedded YouTube player
  491. matches = re.findall(r'''(?x)
  492. (?:
  493. <iframe[^>]+?src=|
  494. data-video-url=|
  495. <embed[^>]+?src=|
  496. embedSWF\(?:\s*
  497. )
  498. (["\'])
  499. (?P<url>(?:https?:)?//(?:www\.)?youtube\.com/
  500. (?:embed|v)/.+?)
  501. \1''', webpage)
  502. if matches:
  503. urlrs = [self.url_result(unescapeHTML(tuppl[1]), 'Youtube')
  504. for tuppl in matches]
  505. # First, ensure we have a duplicate free list of entries
  506. seen = set()
  507. new_list = []
  508. theurl = tuple(url.items())
  509. if theurl not in seen:
  510. seen.add(theurl)
  511. new_list.append(url)
  512. urlrs = new_list
  513. return self.playlist_result(
  514. urlrs, playlist_id=video_id, playlist_title=video_title)
  515. # Look for embedded Dailymotion player
  516. matches = re.findall(
  517. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/embed/video/.+?)\1', webpage)
  518. if matches:
  519. urlrs = [self.url_result(unescapeHTML(tuppl[1]))
  520. for tuppl in matches]
  521. # First, ensure we have a duplicate free list of entries
  522. seen = set()
  523. new_list = []
  524. theurl = tuple(url.items())
  525. if theurl not in seen:
  526. seen.add(theurl)
  527. new_list.append(url)
  528. urlrs = new_list
  529. return self.playlist_result(
  530. urlrs, playlist_id=video_id, playlist_title=video_title)
  531. # Look for embedded Wistia player
  532. match = re.search(
  533. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
  534. if match:
  535. return {
  536. '_type': 'url_transparent',
  537. 'url': unescapeHTML(match.group('url')),
  538. 'ie_key': 'Wistia',
  539. 'uploader': video_uploader,
  540. 'title': video_title,
  541. 'id': video_id,
  542. }
  543. # Look for embedded blip.tv player
  544. mobj = re.search(r'<meta\s[^>]*https?://api\.blip\.tv/\w+/redirect/\w+/(\d+)', webpage)
  545. if mobj:
  546. return self.url_result('http://blip.tv/a/a-'+mobj.group(1), 'BlipTV')
  547. mobj = re.search(r'<(?:iframe|embed|object)\s[^>]*(https?://(?:\w+\.)?blip\.tv/(?:play/|api\.swf#)[a-zA-Z0-9]+)', webpage)
  548. if mobj:
  549. return self.url_result(mobj.group(1), 'BlipTV')
  550. # Look for embedded condenast player
  551. matches = re.findall(
  552. r'<iframe\s+(?:[a-zA-Z-]+="[^"]+"\s+)*?src="(https?://player\.cnevids\.com/embed/[^"]+")',
  553. webpage)
  554. if matches:
  555. return {
  556. '_type': 'playlist',
  557. 'entries': [{
  558. '_type': 'url',
  559. 'ie_key': 'CondeNast',
  560. 'url': ma,
  561. } for ma in matches],
  562. 'title': video_title,
  563. 'id': video_id,
  564. }
  565. # Look for Bandcamp pages with custom domain
  566. mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
  567. if mobj is not None:
  568. burl = unescapeHTML(mobj.group(1))
  569. # Don't set the extractor because it can be a track url or an album
  570. return self.url_result(burl)
  571. # Look for embedded Vevo player
  572. mobj = re.search(
  573. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
  574. if mobj is not None:
  575. return self.url_result(mobj.group('url'))
  576. # Look for Ooyala videos
  577. mobj = (re.search(r'player.ooyala.com/[^"?]+\?[^"]*?(?:embedCode|ec)=(?P<ec>[^"&]+)', webpage) or
  578. re.search(r'OO.Player.create\([\'"].*?[\'"],\s*[\'"](?P<ec>.{32})[\'"]', webpage))
  579. if mobj is not None:
  580. return OoyalaIE._build_url_result(mobj.group('ec'))
  581. # Look for Aparat videos
  582. mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
  583. if mobj is not None:
  584. return self.url_result(mobj.group(1), 'Aparat')
  585. # Look for MPORA videos
  586. mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
  587. if mobj is not None:
  588. return self.url_result(mobj.group(1), 'Mpora')
  589. # Look for embedded NovaMov-based player
  590. mobj = re.search(
  591. r'''(?x)<(?:pagespeed_)?iframe[^>]+?src=(["\'])
  592. (?P<url>http://(?:(?:embed|www)\.)?
  593. (?:novamov\.com|
  594. nowvideo\.(?:ch|sx|eu|at|ag|co)|
  595. videoweed\.(?:es|com)|
  596. movshare\.(?:net|sx|ag)|
  597. divxstage\.(?:eu|net|ch|co|at|ag))
  598. /embed\.php.+?)\1''', webpage)
  599. if mobj is not None:
  600. return self.url_result(mobj.group('url'))
  601. # Look for embedded Facebook player
  602. mobj = re.search(
  603. r'<iframe[^>]+?src=(["\'])(?P<url>https://www\.facebook\.com/video/embed.+?)\1', webpage)
  604. if mobj is not None:
  605. return self.url_result(mobj.group('url'), 'Facebook')
  606. # Look for embedded VK player
  607. mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
  608. if mobj is not None:
  609. return self.url_result(mobj.group('url'), 'VK')
  610. # Look for embedded ivi player
  611. mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage)
  612. if mobj is not None:
  613. return self.url_result(mobj.group('url'), 'Ivi')
  614. # Look for embedded Huffington Post player
  615. mobj = re.search(
  616. r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
  617. if mobj is not None:
  618. return self.url_result(mobj.group('url'), 'HuffPost')
  619. # Look for embed.ly
  620. mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
  621. if mobj is not None:
  622. return self.url_result(mobj.group('url'))
  623. mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
  624. if mobj is not None:
  625. return self.url_result(compat_urllib_parse.unquote(mobj.group('url')))
  626. # Look for funnyordie embed
  627. matches = re.findall(r'<iframe[^>]+?src="(https?://(?:www\.)?funnyordie\.com/embed/[^"]+)"', webpage)
  628. if matches:
  629. urlrs = [self.url_result(unescapeHTML(eurl), 'FunnyOrDie')
  630. for eurl in matches]
  631. # First, ensure we have a duplicate free list of entries
  632. seen = set()
  633. new_list = []
  634. theurl = tuple(url.items())
  635. if theurl not in seen:
  636. seen.add(theurl)
  637. new_list.append(url)
  638. urlrs = new_list
  639. return self.playlist_result(
  640. urlrs, playlist_id=video_id, playlist_title=video_title)
  641. # Look for embedded RUTV player
  642. rutv_url = RUTVIE._extract_url(webpage)
  643. if rutv_url:
  644. return self.url_result(rutv_url, 'RUTV')
  645. # Look for embedded TED player
  646. mobj = re.search(
  647. r'<iframe[^>]+?src=(["\'])(?P<url>http://embed\.ted\.com/.+?)\1', webpage)
  648. if mobj is not None:
  649. return self.url_result(mobj.group('url'), 'TED')
  650. # Look for embedded Ustream videos
  651. mobj = re.search(
  652. r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage)
  653. if mobj is not None:
  654. return self.url_result(mobj.group('url'), 'Ustream')
  655. # Look for embedded arte.tv player
  656. mobj = re.search(
  657. r'<script [^>]*?src="(?P<url>http://www\.arte\.tv/playerv2/embed[^"]+)"',
  658. webpage)
  659. if mobj is not None:
  660. return self.url_result(mobj.group('url'), 'ArteTVEmbed')
  661. # Look for embedded smotri.com player
  662. smotri_url = SmotriIE._extract_url(webpage)
  663. if smotri_url:
  664. return self.url_result(smotri_url, 'Smotri')
  665. # Look for embeded soundcloud player
  666. mobj = re.search(
  667. r'<iframe src="(?P<url>https?://(?:w\.)?soundcloud\.com/player[^"]+)"',
  668. webpage)
  669. if mobj is not None:
  670. url = unescapeHTML(mobj.group('url'))
  671. return self.url_result(url)
  672. # Look for embedded vulture.com player
  673. mobj = re.search(
  674. r'<iframe src="(?P<url>https?://video\.vulture\.com/[^"]+)"',
  675. webpage)
  676. if mobj is not None:
  677. url = unescapeHTML(mobj.group('url'))
  678. return self.url_result(url, ie='Vulture')
  679. # Look for embedded mtvservices player
  680. mobj = re.search(
  681. r'<iframe src="(?P<url>https?://media\.mtvnservices\.com/embed/[^"]+)"',
  682. webpage)
  683. if mobj is not None:
  684. url = unescapeHTML(mobj.group('url'))
  685. return self.url_result(url, ie='MTVServicesEmbedded')
  686. # Look for embedded yahoo player
  687. mobj = re.search(
  688. r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1',
  689. webpage)
  690. if mobj is not None:
  691. return self.url_result(mobj.group('url'), 'Yahoo')
  692. # Start with something easy: JW Player in SWFObject
  693. found = re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage)
  694. if not found:
  695. # Look for gorilla-vid style embedding
  696. found = re.findall(r'''(?sx)
  697. (?:
  698. jw_plugins|
  699. JWPlayerOptions|
  700. jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
  701. )
  702. .*?file\s*:\s*["\'](.*?)["\']''', webpage)
  703. if not found:
  704. # Broaden the search a little bit
  705. found = re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage)
  706. if not found:
  707. # Broaden the findall a little bit: JWPlayer JS loader
  708. found = re.findall(r'[^A-Za-z0-9]?file["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage)
  709. if not found:
  710. # Try to find twitter cards info
  711. found = re.findall(r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage)
  712. if not found:
  713. # We look for Open Graph info:
  714. # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
  715. m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
  716. # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
  717. if m_video_type is not None:
  718. found = re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage)
  719. if not found:
  720. # HTML5 video
  721. found = re.findall(r'(?s)<video[^<]*(?:>.*?<source.*?)? src="([^"]+)"', webpage)
  722. if not found:
  723. found = re.search(
  724. r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
  725. r'(?:[a-z-]+="[^"]+"\s+)*?content="[0-9]{,2};url=\'([^\']+)\'"',
  726. webpage)
  727. if found:
  728. new_url = found.group(1)
  729. self.report_following_redirect(new_url)
  730. return {
  731. '_type': 'url',
  732. 'url': new_url,
  733. }
  734. if not found:
  735. raise ExtractorError('Unsupported URL: %s' % url)
  736. entries = []
  737. for video_url in found:
  738. video_url = compat_urlparse.urljoin(url, video_url)
  739. video_id = compat_urllib_parse.unquote(os.path.basename(video_url))
  740. # Sometimes, jwplayer extraction will result in a YouTube URL
  741. if YoutubeIE.suitable(video_url):
  742. entries.append(self.url_result(video_url, 'Youtube'))
  743. continue
  744. # here's a fun little line of code for you:
  745. video_id = os.path.splitext(video_id)[0]
  746. entries.append({
  747. 'id': video_id,
  748. 'url': video_url,
  749. 'uploader': video_uploader,
  750. 'title': video_title,
  751. })
  752. if len(entries) == 1:
  753. return entries[0]
  754. else:
  755. for num, e in enumerate(entries, start=1):
  756. e['title'] = '%s (%d)' % (e['title'], num)
  757. return {
  758. '_type': 'playlist',
  759. 'entries': entries,
  760. }