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.

965 lines
38 KiB

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