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.

952 lines
38 KiB

10 years ago
11 years ago
11 years ago
11 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. def report_following_redirect(self, new_url):
  379. """Report information extraction."""
  380. self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
  381. def _extract_rss(self, url, video_id, doc):
  382. playlist_title = doc.find('./channel/title').text
  383. playlist_desc_el = doc.find('./channel/description')
  384. playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
  385. entries = [{
  386. '_type': 'url',
  387. 'url': e.find('link').text,
  388. 'title': e.find('title').text,
  389. } for e in doc.findall('./channel/item')]
  390. return {
  391. '_type': 'playlist',
  392. 'id': url,
  393. 'title': playlist_title,
  394. 'description': playlist_desc,
  395. 'entries': entries,
  396. }
  397. def _extract_camtasia(self, url, video_id, webpage):
  398. """ Returns None if no camtasia video can be found. """
  399. camtasia_cfg = self._search_regex(
  400. r'fo\.addVariable\(\s*"csConfigFile",\s*"([^"]+)"\s*\);',
  401. webpage, 'camtasia configuration file', default=None)
  402. if camtasia_cfg is None:
  403. return None
  404. title = self._html_search_meta('DC.title', webpage, fatal=True)
  405. camtasia_url = compat_urlparse.urljoin(url, camtasia_cfg)
  406. camtasia_cfg = self._download_xml(
  407. camtasia_url, video_id,
  408. note='Downloading camtasia configuration',
  409. errnote='Failed to download camtasia configuration')
  410. fileset_node = camtasia_cfg.find('./playlist/array/fileset')
  411. entries = []
  412. for n in fileset_node.getchildren():
  413. url_n = n.find('./uri')
  414. if url_n is None:
  415. continue
  416. entries.append({
  417. 'id': os.path.splitext(url_n.text.rpartition('/')[2])[0],
  418. 'title': '%s - %s' % (title, n.tag),
  419. 'url': compat_urlparse.urljoin(url, url_n.text),
  420. 'duration': float_or_none(n.find('./duration').text),
  421. })
  422. return {
  423. '_type': 'playlist',
  424. 'entries': entries,
  425. 'title': title,
  426. }
  427. def _real_extract(self, url):
  428. if url.startswith('//'):
  429. return {
  430. '_type': 'url',
  431. 'url': self.http_scheme() + url,
  432. }
  433. parsed_url = compat_urlparse.urlparse(url)
  434. if not parsed_url.scheme:
  435. default_search = self._downloader.params.get('default_search')
  436. if default_search is None:
  437. default_search = 'fixup_error'
  438. if default_search in ('auto', 'auto_warning', 'fixup_error'):
  439. if '/' in url:
  440. self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
  441. return self.url_result('http://' + url)
  442. elif default_search != 'fixup_error':
  443. if default_search == 'auto_warning':
  444. if re.match(r'^(?:url|URL)$', url):
  445. raise ExtractorError(
  446. 'Invalid URL: %r . Call youtube-dl like this: youtube-dl -v "https://www.youtube.com/watch?v=BaW_jenozKc" ' % url,
  447. expected=True)
  448. else:
  449. self._downloader.report_warning(
  450. 'Falling back to youtube search for %s . Set --default-search "auto" to suppress this warning.' % url)
  451. return self.url_result('ytsearch:' + url)
  452. if default_search in ('error', 'fixup_error'):
  453. raise ExtractorError(
  454. ('%r is not a valid URL. '
  455. 'Set --default-search "ytsearch" (or run youtube-dl "ytsearch:%s" ) to search YouTube'
  456. ) % (url, url), expected=True)
  457. else:
  458. assert ':' in default_search
  459. return self.url_result(default_search + url)
  460. url, smuggled_data = unsmuggle_url(url)
  461. force_videoid = None
  462. is_intentional = smuggled_data and smuggled_data.get('to_generic')
  463. if smuggled_data and 'force_videoid' in smuggled_data:
  464. force_videoid = smuggled_data['force_videoid']
  465. video_id = force_videoid
  466. else:
  467. video_id = os.path.splitext(url.rstrip('/').split('/')[-1])[0]
  468. self.to_screen('%s: Requesting header' % video_id)
  469. head_req = HEADRequest(url)
  470. response = self._request_webpage(
  471. head_req, video_id,
  472. note=False, errnote='Could not send HEAD request to %s' % url,
  473. fatal=False)
  474. if response is not False:
  475. # Check for redirect
  476. new_url = response.geturl()
  477. if url != new_url:
  478. self.report_following_redirect(new_url)
  479. if force_videoid:
  480. new_url = smuggle_url(
  481. new_url, {'force_videoid': force_videoid})
  482. return self.url_result(new_url)
  483. # Check for direct link to a video
  484. content_type = response.headers.get('Content-Type', '')
  485. m = re.match(r'^(?P<type>audio|video|application(?=/ogg$))/(?P<format_id>.+)$', content_type)
  486. if m:
  487. upload_date = response.headers.get('Last-Modified')
  488. if upload_date:
  489. upload_date = unified_strdate(upload_date)
  490. return {
  491. 'id': video_id,
  492. 'title': os.path.splitext(url_basename(url))[0],
  493. 'formats': [{
  494. 'format_id': m.group('format_id'),
  495. 'url': url,
  496. 'vcodec': 'none' if m.group('type') == 'audio' else None
  497. }],
  498. 'upload_date': upload_date,
  499. }
  500. if not self._downloader.params.get('test', False) and not is_intentional:
  501. self._downloader.report_warning('Falling back on generic information extractor.')
  502. try:
  503. webpage = self._download_webpage(url, video_id)
  504. except ValueError:
  505. # since this is the last-resort InfoExtractor, if
  506. # this error is thrown, it'll be thrown here
  507. raise ExtractorError('Failed to download URL: %s' % url)
  508. self.report_extraction(video_id)
  509. # Is it an RSS feed?
  510. try:
  511. doc = parse_xml(webpage)
  512. if doc.tag == 'rss':
  513. return self._extract_rss(url, video_id, doc)
  514. except compat_xml_parse_error:
  515. pass
  516. # Is it a Camtasia project?
  517. camtasia_res = self._extract_camtasia(url, video_id, webpage)
  518. if camtasia_res is not None:
  519. return camtasia_res
  520. # Sometimes embedded video player is hidden behind percent encoding
  521. # (e.g. https://github.com/rg3/youtube-dl/issues/2448)
  522. # Unescaping the whole page allows to handle those cases in a generic way
  523. webpage = compat_urllib_parse.unquote(webpage)
  524. # it's tempting to parse this further, but you would
  525. # have to take into account all the variations like
  526. # Video Title - Site Name
  527. # Site Name | Video Title
  528. # Video Title - Tagline | Site Name
  529. # and so on and so forth; it's just not practical
  530. video_title = self._html_search_regex(
  531. r'(?s)<title>(.*?)</title>', webpage, 'video title',
  532. default='video')
  533. # Try to detect age limit automatically
  534. age_limit = self._rta_search(webpage)
  535. # And then there are the jokers who advertise that they use RTA,
  536. # but actually don't.
  537. AGE_LIMIT_MARKERS = [
  538. r'Proudly Labeled <a href="http://www.rtalabel.org/" title="Restricted to Adults">RTA</a>',
  539. ]
  540. if any(re.search(marker, webpage) for marker in AGE_LIMIT_MARKERS):
  541. age_limit = 18
  542. # video uploader is domain name
  543. video_uploader = self._search_regex(
  544. r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
  545. # Helper method
  546. def _playlist_from_matches(matches, getter, ie=None):
  547. urlrs = orderedSet(
  548. self.url_result(self._proto_relative_url(getter(m)), ie)
  549. for m in matches)
  550. return self.playlist_result(
  551. urlrs, playlist_id=video_id, playlist_title=video_title)
  552. # Look for BrightCove:
  553. bc_urls = BrightcoveIE._extract_brightcove_urls(webpage)
  554. if bc_urls:
  555. self.to_screen('Brightcove video detected.')
  556. entries = [{
  557. '_type': 'url',
  558. 'url': smuggle_url(bc_url, {'Referer': url}),
  559. 'ie_key': 'Brightcove'
  560. } for bc_url in bc_urls]
  561. return {
  562. '_type': 'playlist',
  563. 'title': video_title,
  564. 'id': video_id,
  565. 'entries': entries,
  566. }
  567. # Look for embedded (iframe) Vimeo player
  568. mobj = re.search(
  569. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//player\.vimeo\.com/video/.+?)\1', webpage)
  570. if mobj:
  571. player_url = unescapeHTML(mobj.group('url'))
  572. surl = smuggle_url(player_url, {'Referer': url})
  573. return self.url_result(surl)
  574. # Look for embedded (swf embed) Vimeo player
  575. mobj = re.search(
  576. r'<embed[^>]+?src="((?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
  577. if mobj:
  578. return self.url_result(mobj.group(1))
  579. # Look for embedded YouTube player
  580. matches = re.findall(r'''(?x)
  581. (?:
  582. <iframe[^>]+?src=|
  583. data-video-url=|
  584. <embed[^>]+?src=|
  585. embedSWF\(?:\s*
  586. )
  587. (["\'])
  588. (?P<url>(?:https?:)?//(?:www\.)?youtube(?:-nocookie)?\.com/
  589. (?:embed|v|p)/.+?)
  590. \1''', webpage)
  591. if matches:
  592. return _playlist_from_matches(
  593. matches, lambda m: unescapeHTML(m[1]))
  594. # Look for embedded Dailymotion player
  595. matches = re.findall(
  596. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/embed/video/.+?)\1', webpage)
  597. if matches:
  598. return _playlist_from_matches(
  599. matches, lambda m: unescapeHTML(m[1]))
  600. # Look for embedded Dailymotion playlist player (#3822)
  601. m = re.search(
  602. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.[a-z]{2,3}/widget/jukebox\?.+?)\1', webpage)
  603. if m:
  604. playlists = re.findall(
  605. r'list\[\]=/playlist/([^/]+)/', unescapeHTML(m.group('url')))
  606. if playlists:
  607. return _playlist_from_matches(
  608. playlists, lambda p: '//dailymotion.com/playlist/%s' % p)
  609. # Look for embedded Wistia player
  610. match = re.search(
  611. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
  612. if match:
  613. embed_url = self._proto_relative_url(
  614. unescapeHTML(match.group('url')))
  615. return {
  616. '_type': 'url_transparent',
  617. 'url': embed_url,
  618. 'ie_key': 'Wistia',
  619. 'uploader': video_uploader,
  620. 'title': video_title,
  621. 'id': video_id,
  622. }
  623. match = re.search(r'(?:id=["\']wistia_|data-wistia-?id=["\']|Wistia\.embed\(["\'])(?P<id>[^"\']+)', webpage)
  624. if match:
  625. return {
  626. '_type': 'url_transparent',
  627. 'url': 'http://fast.wistia.net/embed/iframe/{0:}'.format(match.group('id')),
  628. 'ie_key': 'Wistia',
  629. 'uploader': video_uploader,
  630. 'title': video_title,
  631. 'id': match.group('id')
  632. }
  633. # Look for embedded blip.tv player
  634. mobj = re.search(r'<meta\s[^>]*https?://api\.blip\.tv/\w+/redirect/\w+/(\d+)', webpage)
  635. if mobj:
  636. return self.url_result('http://blip.tv/a/a-'+mobj.group(1), 'BlipTV')
  637. mobj = re.search(r'<(?:iframe|embed|object)\s[^>]*(https?://(?:\w+\.)?blip\.tv/(?:play/|api\.swf#)[a-zA-Z0-9_]+)', webpage)
  638. if mobj:
  639. return self.url_result(mobj.group(1), 'BlipTV')
  640. # Look for embedded condenast player
  641. matches = re.findall(
  642. r'<iframe\s+(?:[a-zA-Z-]+="[^"]+"\s+)*?src="(https?://player\.cnevids\.com/embed/[^"]+")',
  643. webpage)
  644. if matches:
  645. return {
  646. '_type': 'playlist',
  647. 'entries': [{
  648. '_type': 'url',
  649. 'ie_key': 'CondeNast',
  650. 'url': ma,
  651. } for ma in matches],
  652. 'title': video_title,
  653. 'id': video_id,
  654. }
  655. # Look for Bandcamp pages with custom domain
  656. mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
  657. if mobj is not None:
  658. burl = unescapeHTML(mobj.group(1))
  659. # Don't set the extractor because it can be a track url or an album
  660. return self.url_result(burl)
  661. # Look for embedded Vevo player
  662. mobj = re.search(
  663. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
  664. if mobj is not None:
  665. return self.url_result(mobj.group('url'))
  666. # Look for Ooyala videos
  667. mobj = (re.search(r'player.ooyala.com/[^"?]+\?[^"]*?(?:embedCode|ec)=(?P<ec>[^"&]+)', webpage) or
  668. re.search(r'OO.Player.create\([\'"].*?[\'"],\s*[\'"](?P<ec>.{32})[\'"]', webpage))
  669. if mobj is not None:
  670. return OoyalaIE._build_url_result(mobj.group('ec'))
  671. # Look for Aparat videos
  672. mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
  673. if mobj is not None:
  674. return self.url_result(mobj.group(1), 'Aparat')
  675. # Look for MPORA videos
  676. mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
  677. if mobj is not None:
  678. return self.url_result(mobj.group(1), 'Mpora')
  679. # Look for embedded NovaMov-based player
  680. mobj = re.search(
  681. r'''(?x)<(?:pagespeed_)?iframe[^>]+?src=(["\'])
  682. (?P<url>http://(?:(?:embed|www)\.)?
  683. (?:novamov\.com|
  684. nowvideo\.(?:ch|sx|eu|at|ag|co)|
  685. videoweed\.(?:es|com)|
  686. movshare\.(?:net|sx|ag)|
  687. divxstage\.(?:eu|net|ch|co|at|ag))
  688. /embed\.php.+?)\1''', webpage)
  689. if mobj is not None:
  690. return self.url_result(mobj.group('url'))
  691. # Look for embedded Facebook player
  692. mobj = re.search(
  693. r'<iframe[^>]+?src=(["\'])(?P<url>https://www\.facebook\.com/video/embed.+?)\1', webpage)
  694. if mobj is not None:
  695. return self.url_result(mobj.group('url'), 'Facebook')
  696. # Look for embedded VK player
  697. mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
  698. if mobj is not None:
  699. return self.url_result(mobj.group('url'), 'VK')
  700. # Look for embedded ivi player
  701. mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage)
  702. if mobj is not None:
  703. return self.url_result(mobj.group('url'), 'Ivi')
  704. # Look for embedded Huffington Post player
  705. mobj = re.search(
  706. r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
  707. if mobj is not None:
  708. return self.url_result(mobj.group('url'), 'HuffPost')
  709. # Look for embed.ly
  710. mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
  711. if mobj is not None:
  712. return self.url_result(mobj.group('url'))
  713. mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
  714. if mobj is not None:
  715. return self.url_result(compat_urllib_parse.unquote(mobj.group('url')))
  716. # Look for funnyordie embed
  717. matches = re.findall(r'<iframe[^>]+?src="(https?://(?:www\.)?funnyordie\.com/embed/[^"]+)"', webpage)
  718. if matches:
  719. return _playlist_from_matches(
  720. matches, getter=unescapeHTML, ie='FunnyOrDie')
  721. # Look for embedded RUTV player
  722. rutv_url = RUTVIE._extract_url(webpage)
  723. if rutv_url:
  724. return self.url_result(rutv_url, 'RUTV')
  725. # Look for embedded TED player
  726. mobj = re.search(
  727. r'<iframe[^>]+?src=(["\'])(?P<url>http://embed\.ted\.com/.+?)\1', webpage)
  728. if mobj is not None:
  729. return self.url_result(mobj.group('url'), 'TED')
  730. # Look for embedded Ustream videos
  731. mobj = re.search(
  732. r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage)
  733. if mobj is not None:
  734. return self.url_result(mobj.group('url'), 'Ustream')
  735. # Look for embedded arte.tv player
  736. mobj = re.search(
  737. r'<script [^>]*?src="(?P<url>http://www\.arte\.tv/playerv2/embed[^"]+)"',
  738. webpage)
  739. if mobj is not None:
  740. return self.url_result(mobj.group('url'), 'ArteTVEmbed')
  741. # Look for embedded smotri.com player
  742. smotri_url = SmotriIE._extract_url(webpage)
  743. if smotri_url:
  744. return self.url_result(smotri_url, 'Smotri')
  745. # Look for embeded soundcloud player
  746. mobj = re.search(
  747. r'<iframe src="(?P<url>https?://(?:w\.)?soundcloud\.com/player[^"]+)"',
  748. webpage)
  749. if mobj is not None:
  750. url = unescapeHTML(mobj.group('url'))
  751. return self.url_result(url)
  752. # Look for embedded vulture.com player
  753. mobj = re.search(
  754. r'<iframe src="(?P<url>https?://video\.vulture\.com/[^"]+)"',
  755. webpage)
  756. if mobj is not None:
  757. url = unescapeHTML(mobj.group('url'))
  758. return self.url_result(url, ie='Vulture')
  759. # Look for embedded mtvservices player
  760. mobj = re.search(
  761. r'<iframe src="(?P<url>https?://media\.mtvnservices\.com/embed/[^"]+)"',
  762. webpage)
  763. if mobj is not None:
  764. url = unescapeHTML(mobj.group('url'))
  765. return self.url_result(url, ie='MTVServicesEmbedded')
  766. # Look for embedded yahoo player
  767. mobj = re.search(
  768. r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1',
  769. webpage)
  770. if mobj is not None:
  771. return self.url_result(mobj.group('url'), 'Yahoo')
  772. # Look for embedded sbs.com.au player
  773. mobj = re.search(
  774. r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:www\.)sbs\.com\.au/ondemand/video/single/.+?)\1',
  775. webpage)
  776. if mobj is not None:
  777. return self.url_result(mobj.group('url'), 'SBS')
  778. mobj = re.search(
  779. r'<iframe[^>]+?src=(["\'])(?P<url>https?://m\.mlb\.com/shared/video/embed/embed\.html\?.+?)\1',
  780. webpage)
  781. if mobj is not None:
  782. return self.url_result(mobj.group('url'), 'MLB')
  783. mobj = re.search(
  784. r'<iframe[^>]+?src=(["\'])(?P<url>%s)\1' % CondeNastIE.EMBED_URL,
  785. webpage)
  786. if mobj is not None:
  787. return self.url_result(self._proto_relative_url(mobj.group('url'), scheme='http:'), 'CondeNast')
  788. def check_video(vurl):
  789. vpath = compat_urlparse.urlparse(vurl).path
  790. vext = determine_ext(vpath)
  791. return '.' in vpath and vext not in ('swf', 'png', 'jpg', 'srt', 'sbv', 'sub', 'vtt', 'ttml')
  792. def filter_video(urls):
  793. return list(filter(check_video, urls))
  794. # Start with something easy: JW Player in SWFObject
  795. found = filter_video(re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage))
  796. if not found:
  797. # Look for gorilla-vid style embedding
  798. found = filter_video(re.findall(r'''(?sx)
  799. (?:
  800. jw_plugins|
  801. JWPlayerOptions|
  802. jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
  803. )
  804. .*?file\s*:\s*["\'](.*?)["\']''', webpage))
  805. if not found:
  806. # Broaden the search a little bit
  807. found = filter_video(re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage))
  808. if not found:
  809. # Broaden the findall a little bit: JWPlayer JS loader
  810. found = filter_video(re.findall(
  811. r'[^A-Za-z0-9]?file["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage))
  812. if not found:
  813. # Flow player
  814. found = filter_video(re.findall(r'''(?xs)
  815. flowplayer\("[^"]+",\s*
  816. \{[^}]+?\}\s*,
  817. \s*{[^}]+? ["']?clip["']?\s*:\s*\{\s*
  818. ["']?url["']?\s*:\s*["']([^"']+)["']
  819. ''', webpage))
  820. if not found:
  821. # Try to find twitter cards info
  822. found = filter_video(re.findall(
  823. r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage))
  824. if not found:
  825. # We look for Open Graph info:
  826. # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
  827. m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
  828. # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
  829. if m_video_type is not None:
  830. found = filter_video(re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage))
  831. if not found:
  832. # HTML5 video
  833. found = re.findall(r'(?s)<video[^<]*(?:>.*?<source[^>]+)? src="([^"]+)"', webpage)
  834. if not found:
  835. found = re.search(
  836. r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
  837. r'(?:[a-z-]+="[^"]+"\s+)*?content="[0-9]{,2};url=\'?([^\'"]+)',
  838. webpage)
  839. if found:
  840. new_url = found.group(1)
  841. self.report_following_redirect(new_url)
  842. return {
  843. '_type': 'url',
  844. 'url': new_url,
  845. }
  846. if not found:
  847. raise ExtractorError('Unsupported URL: %s' % url)
  848. entries = []
  849. for video_url in found:
  850. video_url = compat_urlparse.urljoin(url, video_url)
  851. video_id = compat_urllib_parse.unquote(os.path.basename(video_url))
  852. # Sometimes, jwplayer extraction will result in a YouTube URL
  853. if YoutubeIE.suitable(video_url):
  854. entries.append(self.url_result(video_url, 'Youtube'))
  855. continue
  856. # here's a fun little line of code for you:
  857. video_id = os.path.splitext(video_id)[0]
  858. entries.append({
  859. 'id': video_id,
  860. 'url': video_url,
  861. 'uploader': video_uploader,
  862. 'title': video_title,
  863. 'age_limit': age_limit,
  864. })
  865. if len(entries) == 1:
  866. return entries[0]
  867. else:
  868. for num, e in enumerate(entries, start=1):
  869. e['title'] = '%s (%d)' % (e['title'], num)
  870. return {
  871. '_type': 'playlist',
  872. 'entries': entries,
  873. }