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.

1574 lines
62 KiB

10 years ago
11 years ago
11 years ago
11 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 ..compat import (
  8. compat_urllib_parse,
  9. compat_urllib_parse_unquote,
  10. compat_urllib_request,
  11. compat_urlparse,
  12. compat_xml_parse_error,
  13. )
  14. from ..utils import (
  15. determine_ext,
  16. ExtractorError,
  17. float_or_none,
  18. HEADRequest,
  19. is_html,
  20. orderedSet,
  21. parse_xml,
  22. smuggle_url,
  23. unescapeHTML,
  24. unified_strdate,
  25. unsmuggle_url,
  26. UnsupportedError,
  27. url_basename,
  28. xpath_text,
  29. )
  30. from .brightcove import BrightcoveIE
  31. from .nbc import NBCSportsVPlayerIE
  32. from .ooyala import OoyalaIE
  33. from .rutv import RUTVIE
  34. from .sportbox import SportBoxEmbedIE
  35. from .smotri import SmotriIE
  36. from .condenast import CondeNastIE
  37. from .udn import UDNEmbedIE
  38. from .senateisvp import SenateISVPIE
  39. from .bliptv import BlipTVIE
  40. from .svt import SVTIE
  41. class GenericIE(InfoExtractor):
  42. IE_DESC = 'Generic downloader that works on some sites'
  43. _VALID_URL = r'.*'
  44. IE_NAME = 'generic'
  45. _TESTS = [
  46. # Direct link to a video
  47. {
  48. 'url': 'http://media.w3.org/2010/05/sintel/trailer.mp4',
  49. 'md5': '67d406c2bcb6af27fa886f31aa934bbe',
  50. 'info_dict': {
  51. 'id': 'trailer',
  52. 'ext': 'mp4',
  53. 'title': 'trailer',
  54. 'upload_date': '20100513',
  55. }
  56. },
  57. # Direct link to media delivered compressed (until Accept-Encoding is *)
  58. {
  59. 'url': 'http://calimero.tk/muzik/FictionJunction-Parallel_Hearts.flac',
  60. 'md5': '128c42e68b13950268b648275386fc74',
  61. 'info_dict': {
  62. 'id': 'FictionJunction-Parallel_Hearts',
  63. 'ext': 'flac',
  64. 'title': 'FictionJunction-Parallel_Hearts',
  65. 'upload_date': '20140522',
  66. },
  67. 'expected_warnings': [
  68. 'URL could be a direct video link, returning it as such.'
  69. ]
  70. },
  71. # Direct download with broken HEAD
  72. {
  73. 'url': 'http://ai-radio.org:8000/radio.opus',
  74. 'info_dict': {
  75. 'id': 'radio',
  76. 'ext': 'opus',
  77. 'title': 'radio',
  78. },
  79. 'params': {
  80. 'skip_download': True, # infinite live stream
  81. },
  82. 'expected_warnings': [
  83. r'501.*Not Implemented'
  84. ],
  85. },
  86. # Direct link with incorrect MIME type
  87. {
  88. 'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
  89. 'md5': '4ccbebe5f36706d85221f204d7eb5913',
  90. 'info_dict': {
  91. 'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
  92. 'id': '5_Lennart_Poettering_-_Systemd',
  93. 'ext': 'webm',
  94. 'title': '5_Lennart_Poettering_-_Systemd',
  95. 'upload_date': '20141120',
  96. },
  97. 'expected_warnings': [
  98. 'URL could be a direct video link, returning it as such.'
  99. ]
  100. },
  101. # RSS feed
  102. {
  103. 'url': 'http://phihag.de/2014/youtube-dl/rss2.xml',
  104. 'info_dict': {
  105. 'id': 'http://phihag.de/2014/youtube-dl/rss2.xml',
  106. 'title': 'Zero Punctuation',
  107. 'description': 're:.*groundbreaking video review series.*'
  108. },
  109. 'playlist_mincount': 11,
  110. },
  111. # RSS feed with enclosure
  112. {
  113. 'url': 'http://podcastfeeds.nbcnews.com/audio/podcast/MSNBC-MADDOW-NETCAST-M4V.xml',
  114. 'info_dict': {
  115. 'id': 'pdv_maddow_netcast_m4v-02-27-2015-201624',
  116. 'ext': 'm4v',
  117. 'upload_date': '20150228',
  118. 'title': 'pdv_maddow_netcast_m4v-02-27-2015-201624',
  119. }
  120. },
  121. # google redirect
  122. {
  123. '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',
  124. 'info_dict': {
  125. 'id': 'cmQHVoWB5FY',
  126. 'ext': 'mp4',
  127. 'upload_date': '20130224',
  128. 'uploader_id': 'TheVerge',
  129. 'description': 're:^Chris Ziegler takes a look at the\.*',
  130. 'uploader': 'The Verge',
  131. 'title': 'First Firefox OS phones side-by-side',
  132. },
  133. 'params': {
  134. 'skip_download': False,
  135. }
  136. },
  137. {
  138. 'url': 'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html',
  139. 'md5': '85b90ccc9d73b4acd9138d3af4c27f89',
  140. 'info_dict': {
  141. 'id': '13601338388002',
  142. 'ext': 'mp4',
  143. 'uploader': 'www.hodiho.fr',
  144. 'title': 'R\u00e9gis plante sa Jeep',
  145. }
  146. },
  147. # bandcamp page with custom domain
  148. {
  149. 'add_ie': ['Bandcamp'],
  150. 'url': 'http://bronyrock.com/track/the-pony-mash',
  151. 'info_dict': {
  152. 'id': '3235767654',
  153. 'ext': 'mp3',
  154. 'title': 'The Pony Mash',
  155. 'uploader': 'M_Pallante',
  156. },
  157. 'skip': 'There is a limit of 200 free downloads / month for the test song',
  158. },
  159. # embedded brightcove video
  160. # it also tests brightcove videos that need to set the 'Referer' in the
  161. # http requests
  162. {
  163. 'add_ie': ['Brightcove'],
  164. 'url': 'http://www.bfmtv.com/video/bfmbusiness/cours-bourse/cours-bourse-l-analyse-technique-154522/',
  165. 'info_dict': {
  166. 'id': '2765128793001',
  167. 'ext': 'mp4',
  168. 'title': 'Le cours de bourse : l’analyse technique',
  169. 'description': 'md5:7e9ad046e968cb2d1114004aba466fd9',
  170. 'uploader': 'BFM BUSINESS',
  171. },
  172. 'params': {
  173. 'skip_download': True,
  174. },
  175. },
  176. {
  177. # https://github.com/rg3/youtube-dl/issues/2253
  178. 'url': 'http://bcove.me/i6nfkrc3',
  179. 'md5': '0ba9446db037002366bab3b3eb30c88c',
  180. 'info_dict': {
  181. 'id': '3101154703001',
  182. 'ext': 'mp4',
  183. 'title': 'Still no power',
  184. 'uploader': 'thestar.com',
  185. '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.',
  186. },
  187. 'add_ie': ['Brightcove'],
  188. },
  189. {
  190. 'url': 'http://www.championat.com/video/football/v/87/87499.html',
  191. 'md5': 'fb973ecf6e4a78a67453647444222983',
  192. 'info_dict': {
  193. 'id': '3414141473001',
  194. 'ext': 'mp4',
  195. 'title': 'Видео. Удаление Дзагоева (ЦСКА)',
  196. 'description': 'Онлайн-трансляция матча ЦСКА - "Волга"',
  197. 'uploader': 'Championat',
  198. },
  199. },
  200. {
  201. # https://github.com/rg3/youtube-dl/issues/3541
  202. 'add_ie': ['Brightcove'],
  203. 'url': 'http://www.kijk.nl/sbs6/leermijvrouwenkennen/videos/jqMiXKAYan2S/aflevering-1',
  204. 'info_dict': {
  205. 'id': '3866516442001',
  206. 'ext': 'mp4',
  207. 'title': 'Leer mij vrouwen kennen: Aflevering 1',
  208. 'description': 'Leer mij vrouwen kennen: Aflevering 1',
  209. 'uploader': 'SBS Broadcasting',
  210. },
  211. 'skip': 'Restricted to Netherlands',
  212. 'params': {
  213. 'skip_download': True, # m3u8 download
  214. },
  215. },
  216. # ooyala video
  217. {
  218. 'url': 'http://www.rollingstone.com/music/videos/norwegian-dj-cashmere-cat-goes-spartan-on-with-me-premiere-20131219',
  219. 'md5': '166dd577b433b4d4ebfee10b0824d8ff',
  220. 'info_dict': {
  221. 'id': 'BwY2RxaTrTkslxOfcan0UCf0YqyvWysJ',
  222. 'ext': 'mp4',
  223. 'title': '2cc213299525360.mov', # that's what we get
  224. },
  225. 'add_ie': ['Ooyala'],
  226. },
  227. # multiple ooyala embeds on SBN network websites
  228. {
  229. 'url': 'http://www.sbnation.com/college-football-recruiting/2015/2/3/7970291/national-signing-day-rationalizations-itll-be-ok-itll-be-ok',
  230. 'info_dict': {
  231. 'id': 'national-signing-day-rationalizations-itll-be-ok-itll-be-ok',
  232. 'title': '25 lies you will tell yourself on National Signing Day - SBNation.com',
  233. },
  234. 'playlist_mincount': 3,
  235. 'params': {
  236. 'skip_download': True,
  237. },
  238. 'add_ie': ['Ooyala'],
  239. },
  240. # embed.ly video
  241. {
  242. 'url': 'http://www.tested.com/science/weird/460206-tested-grinding-coffee-2000-frames-second/',
  243. 'info_dict': {
  244. 'id': '9ODmcdjQcHQ',
  245. 'ext': 'mp4',
  246. 'title': 'Tested: Grinding Coffee at 2000 Frames Per Second',
  247. 'upload_date': '20140225',
  248. 'description': 'md5:06a40fbf30b220468f1e0957c0f558ff',
  249. 'uploader': 'Tested',
  250. 'uploader_id': 'testedcom',
  251. },
  252. # No need to test YoutubeIE here
  253. 'params': {
  254. 'skip_download': True,
  255. },
  256. },
  257. # funnyordie embed
  258. {
  259. 'url': 'http://www.theguardian.com/world/2014/mar/11/obama-zach-galifianakis-between-two-ferns',
  260. 'info_dict': {
  261. 'id': '18e820ec3f',
  262. 'ext': 'mp4',
  263. 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama',
  264. 'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',
  265. },
  266. },
  267. # BBC iPlayer embeds
  268. {
  269. 'url': 'http://www.bbc.co.uk/blogs/adamcurtis/posts/BUGGER',
  270. 'info_dict': {
  271. 'title': 'BBC - Blogs - Adam Curtis - BUGGER',
  272. },
  273. 'playlist_mincount': 18,
  274. },
  275. # RUTV embed
  276. {
  277. 'url': 'http://www.rg.ru/2014/03/15/reg-dfo/anklav-anons.html',
  278. 'info_dict': {
  279. 'id': '776940',
  280. 'ext': 'mp4',
  281. 'title': 'Охотское море стало целиком российским',
  282. 'description': 'md5:5ed62483b14663e2a95ebbe115eb8f43',
  283. },
  284. 'params': {
  285. # m3u8 download
  286. 'skip_download': True,
  287. },
  288. },
  289. # SportBox embed
  290. {
  291. 'url': 'http://www.vestifinance.ru/articles/25753',
  292. 'info_dict': {
  293. 'id': '25753',
  294. 'title': 'Вести Экономика ― Прямые трансляции с Форума-выставки "Госзаказ-2013"',
  295. },
  296. 'playlist': [{
  297. 'info_dict': {
  298. 'id': '370908',
  299. 'title': 'Госзаказ. День 3',
  300. 'ext': 'mp4',
  301. }
  302. }, {
  303. 'info_dict': {
  304. 'id': '370905',
  305. 'title': 'Госзаказ. День 2',
  306. 'ext': 'mp4',
  307. }
  308. }, {
  309. 'info_dict': {
  310. 'id': '370902',
  311. 'title': 'Госзаказ. День 1',
  312. 'ext': 'mp4',
  313. }
  314. }],
  315. 'params': {
  316. # m3u8 download
  317. 'skip_download': True,
  318. },
  319. },
  320. # Embedded TED video
  321. {
  322. 'url': 'http://en.support.wordpress.com/videos/ted-talks/',
  323. 'md5': '65fdff94098e4a607385a60c5177c638',
  324. 'info_dict': {
  325. 'id': '1969',
  326. 'ext': 'mp4',
  327. 'title': 'Hidden miracles of the natural world',
  328. 'uploader': 'Louie Schwartzberg',
  329. 'description': 'md5:8145d19d320ff3e52f28401f4c4283b9',
  330. }
  331. },
  332. # Embeded Ustream video
  333. {
  334. 'url': 'http://www.american.edu/spa/pti/nsa-privacy-janus-2014.cfm',
  335. 'md5': '27b99cdb639c9b12a79bca876a073417',
  336. 'info_dict': {
  337. 'id': '45734260',
  338. 'ext': 'flv',
  339. 'uploader': 'AU SPA: The NSA and Privacy',
  340. 'title': 'NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman'
  341. }
  342. },
  343. # nowvideo embed hidden behind percent encoding
  344. {
  345. 'url': 'http://www.waoanime.tv/the-super-dimension-fortress-macross-episode-1/',
  346. 'md5': '2baf4ddd70f697d94b1c18cf796d5107',
  347. 'info_dict': {
  348. 'id': '06e53103ca9aa',
  349. 'ext': 'flv',
  350. 'title': 'Macross Episode 001 Watch Macross Episode 001 onl',
  351. 'description': 'No description',
  352. },
  353. },
  354. # arte embed
  355. {
  356. 'url': 'http://www.tv-replay.fr/redirection/20-03-14/x-enius-arte-10753389.html',
  357. 'md5': '7653032cbb25bf6c80d80f217055fa43',
  358. 'info_dict': {
  359. 'id': '048195-004_PLUS7-F',
  360. 'ext': 'flv',
  361. 'title': 'X:enius',
  362. 'description': 'md5:d5fdf32ef6613cdbfd516ae658abf168',
  363. 'upload_date': '20140320',
  364. },
  365. 'params': {
  366. 'skip_download': 'Requires rtmpdump'
  367. }
  368. },
  369. # Condé Nast embed
  370. {
  371. 'url': 'http://www.wired.com/2014/04/honda-asimo/',
  372. 'md5': 'ba0dfe966fa007657bd1443ee672db0f',
  373. 'info_dict': {
  374. 'id': '53501be369702d3275860000',
  375. 'ext': 'mp4',
  376. 'title': 'Honda’s New Asimo Robot Is More Human Than Ever',
  377. }
  378. },
  379. # Dailymotion embed
  380. {
  381. 'url': 'http://www.spi0n.com/zap-spi0n-com-n216/',
  382. 'md5': '441aeeb82eb72c422c7f14ec533999cd',
  383. 'info_dict': {
  384. 'id': 'k2mm4bCdJ6CQ2i7c8o2',
  385. 'ext': 'mp4',
  386. 'title': 'Le Zap de Spi0n n°216 - Zapping du Web',
  387. 'uploader': 'Spi0n',
  388. },
  389. 'add_ie': ['Dailymotion'],
  390. },
  391. # YouTube embed
  392. {
  393. 'url': 'http://www.badzine.de/ansicht/datum/2014/06/09/so-funktioniert-die-neue-englische-badminton-liga.html',
  394. 'info_dict': {
  395. 'id': 'FXRb4ykk4S0',
  396. 'ext': 'mp4',
  397. 'title': 'The NBL Auction 2014',
  398. 'uploader': 'BADMINTON England',
  399. 'uploader_id': 'BADMINTONEvents',
  400. 'upload_date': '20140603',
  401. 'description': 'md5:9ef128a69f1e262a700ed83edb163a73',
  402. },
  403. 'add_ie': ['Youtube'],
  404. 'params': {
  405. 'skip_download': True,
  406. }
  407. },
  408. # MTVSercices embed
  409. {
  410. 'url': 'http://www.gametrailers.com/news-post/76093/north-america-europe-is-getting-that-mario-kart-8-mercedes-dlc-too',
  411. 'md5': '35727f82f58c76d996fc188f9755b0d5',
  412. 'info_dict': {
  413. 'id': '0306a69b-8adf-4fb5-aace-75f8e8cbfca9',
  414. 'ext': 'mp4',
  415. 'title': 'Review',
  416. 'description': 'Mario\'s life in the fast lane has never looked so good.',
  417. },
  418. },
  419. # YouTube embed via <data-embed-url="">
  420. {
  421. 'url': 'https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM',
  422. 'info_dict': {
  423. 'id': '4vAffPZIT44',
  424. 'ext': 'mp4',
  425. 'title': 'Asphalt 8: Airborne - Update - Welcome to Dubai!',
  426. 'uploader': 'Gameloft',
  427. 'uploader_id': 'gameloft',
  428. 'upload_date': '20140828',
  429. 'description': 'md5:c80da9ed3d83ae6d1876c834de03e1c4',
  430. },
  431. 'params': {
  432. 'skip_download': True,
  433. }
  434. },
  435. # Camtasia studio
  436. {
  437. 'url': 'http://www.ll.mit.edu/workshops/education/videocourses/antennas/lecture1/video/',
  438. 'playlist': [{
  439. 'md5': '0c5e352edabf715d762b0ad4e6d9ee67',
  440. 'info_dict': {
  441. 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
  442. 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - video1',
  443. 'ext': 'flv',
  444. 'duration': 2235.90,
  445. }
  446. }, {
  447. 'md5': '10e4bb3aaca9fd630e273ff92d9f3c63',
  448. 'info_dict': {
  449. 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final_PIP',
  450. 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - pip',
  451. 'ext': 'flv',
  452. 'duration': 2235.93,
  453. }
  454. }],
  455. 'info_dict': {
  456. 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
  457. }
  458. },
  459. # Flowplayer
  460. {
  461. 'url': 'http://www.handjobhub.com/video/busty-blonde-siri-tit-fuck-while-wank-6313.html',
  462. 'md5': '9d65602bf31c6e20014319c7d07fba27',
  463. 'info_dict': {
  464. 'id': '5123ea6d5e5a7',
  465. 'ext': 'mp4',
  466. 'age_limit': 18,
  467. 'uploader': 'www.handjobhub.com',
  468. 'title': 'Busty Blonde Siri Tit Fuck While Wank at HandjobHub.com',
  469. }
  470. },
  471. # Multiple brightcove videos
  472. # https://github.com/rg3/youtube-dl/issues/2283
  473. {
  474. 'url': 'http://www.newyorker.com/online/blogs/newsdesk/2014/01/always-never-nuclear-command-and-control.html',
  475. 'info_dict': {
  476. 'id': 'always-never',
  477. 'title': 'Always / Never - The New Yorker',
  478. },
  479. 'playlist_count': 3,
  480. 'params': {
  481. 'extract_flat': False,
  482. 'skip_download': True,
  483. }
  484. },
  485. # MLB embed
  486. {
  487. 'url': 'http://umpire-empire.com/index.php/topic/58125-laz-decides-no-thats-low/',
  488. 'md5': '96f09a37e44da40dd083e12d9a683327',
  489. 'info_dict': {
  490. 'id': '33322633',
  491. 'ext': 'mp4',
  492. 'title': 'Ump changes call to ball',
  493. 'description': 'md5:71c11215384298a172a6dcb4c2e20685',
  494. 'duration': 48,
  495. 'timestamp': 1401537900,
  496. 'upload_date': '20140531',
  497. 'thumbnail': 're:^https?://.*\.jpg$',
  498. },
  499. },
  500. # Wistia embed
  501. {
  502. 'url': 'http://education-portal.com/academy/lesson/north-american-exploration-failed-colonies-of-spain-france-england.html#lesson',
  503. 'md5': '8788b683c777a5cf25621eaf286d0c23',
  504. 'info_dict': {
  505. 'id': '1cfaf6b7ea',
  506. 'ext': 'mov',
  507. 'title': 'md5:51364a8d3d009997ba99656004b5e20d',
  508. 'duration': 643.0,
  509. 'filesize': 182808282,
  510. 'uploader': 'education-portal.com',
  511. },
  512. },
  513. {
  514. 'url': 'http://thoughtworks.wistia.com/medias/uxjb0lwrcz',
  515. 'md5': 'baf49c2baa8a7de5f3fc145a8506dcd4',
  516. 'info_dict': {
  517. 'id': 'uxjb0lwrcz',
  518. 'ext': 'mp4',
  519. 'title': 'Conversation about Hexagonal Rails Part 1 - ThoughtWorks',
  520. 'duration': 1715.0,
  521. 'uploader': 'thoughtworks.wistia.com',
  522. },
  523. },
  524. # Soundcloud embed
  525. {
  526. 'url': 'http://nakedsecurity.sophos.com/2014/10/29/sscc-171-are-you-sure-that-1234-is-a-bad-password-podcast/',
  527. 'info_dict': {
  528. 'id': '174391317',
  529. 'ext': 'mp3',
  530. 'description': 'md5:ff867d6b555488ad3c52572bb33d432c',
  531. 'uploader': 'Sophos Security',
  532. 'title': 'Chet Chat 171 - Oct 29, 2014',
  533. 'upload_date': '20141029',
  534. }
  535. },
  536. # Livestream embed
  537. {
  538. 'url': 'http://www.esa.int/Our_Activities/Space_Science/Rosetta/Philae_comet_touch-down_webcast',
  539. 'info_dict': {
  540. 'id': '67864563',
  541. 'ext': 'flv',
  542. 'upload_date': '20141112',
  543. 'title': 'Rosetta #CometLanding webcast HL 10',
  544. }
  545. },
  546. # LazyYT
  547. {
  548. 'url': 'http://discourse.ubuntu.com/t/unity-8-desktop-mode-windows-on-mir/1986',
  549. 'info_dict': {
  550. 'id': '1986',
  551. 'title': 'Unity 8 desktop-mode windows on Mir! - Ubuntu Discourse',
  552. },
  553. 'playlist_mincount': 2,
  554. },
  555. # Cinchcast embed
  556. {
  557. 'url': 'http://undergroundwellness.com/podcasts/306-5-steps-to-permanent-gut-healing/',
  558. 'info_dict': {
  559. 'id': '7141703',
  560. 'ext': 'mp3',
  561. 'upload_date': '20141126',
  562. 'title': 'Jack Tips: 5 Steps to Permanent Gut Healing',
  563. }
  564. },
  565. # Cinerama player
  566. {
  567. 'url': 'http://www.abc.net.au/7.30/content/2015/s4164797.htm',
  568. 'info_dict': {
  569. 'id': '730m_DandD_1901_512k',
  570. 'ext': 'mp4',
  571. 'uploader': 'www.abc.net.au',
  572. 'title': 'Game of Thrones with dice - Dungeons and Dragons fantasy role-playing game gets new life - 19/01/2015',
  573. }
  574. },
  575. # embedded viddler video
  576. {
  577. 'url': 'http://deadspin.com/i-cant-stop-watching-john-wall-chop-the-nuggets-with-th-1681801597',
  578. 'info_dict': {
  579. 'id': '4d03aad9',
  580. 'ext': 'mp4',
  581. 'uploader': 'deadspin',
  582. 'title': 'WALL-TO-GORTAT',
  583. 'timestamp': 1422285291,
  584. 'upload_date': '20150126',
  585. },
  586. 'add_ie': ['Viddler'],
  587. },
  588. # Libsyn embed
  589. {
  590. 'url': 'http://thedailyshow.cc.com/podcast/episodetwelve',
  591. 'info_dict': {
  592. 'id': '3377616',
  593. 'ext': 'mp3',
  594. 'title': "The Daily Show Podcast without Jon Stewart - Episode 12: Bassem Youssef: Egypt's Jon Stewart",
  595. 'description': 'md5:601cb790edd05908957dae8aaa866465',
  596. 'upload_date': '20150220',
  597. },
  598. },
  599. # jwplayer YouTube
  600. {
  601. 'url': 'http://media.nationalarchives.gov.uk/index.php/webinar-using-discovery-national-archives-online-catalogue/',
  602. 'info_dict': {
  603. 'id': 'Mrj4DVp2zeA',
  604. 'ext': 'mp4',
  605. 'upload_date': '20150212',
  606. 'uploader': 'The National Archives UK',
  607. 'description': 'md5:a236581cd2449dd2df4f93412f3f01c6',
  608. 'uploader_id': 'NationalArchives08',
  609. 'title': 'Webinar: Using Discovery, The National Archives’ online catalogue',
  610. },
  611. },
  612. # rtl.nl embed
  613. {
  614. 'url': 'http://www.rtlnieuws.nl/nieuws/buitenland/aanslagen-kopenhagen',
  615. 'playlist_mincount': 5,
  616. 'info_dict': {
  617. 'id': 'aanslagen-kopenhagen',
  618. 'title': 'Aanslagen Kopenhagen | RTL Nieuws',
  619. }
  620. },
  621. # Zapiks embed
  622. {
  623. 'url': 'http://www.skipass.com/news/116090-bon-appetit-s5ep3-baqueira-mi-cor.html',
  624. 'info_dict': {
  625. 'id': '118046',
  626. 'ext': 'mp4',
  627. 'title': 'EP3S5 - Bon Appétit - Baqueira Mi Corazon !',
  628. }
  629. },
  630. # Kaltura embed
  631. {
  632. 'url': 'http://www.monumentalnetwork.com/videos/john-carlson-postgame-2-25-15',
  633. 'info_dict': {
  634. 'id': '1_eergr3h1',
  635. 'ext': 'mp4',
  636. 'upload_date': '20150226',
  637. 'uploader_id': 'MonumentalSports-Kaltura@perfectsensedigital.com',
  638. 'timestamp': int,
  639. 'title': 'John Carlson Postgame 2/25/15',
  640. },
  641. },
  642. # Eagle.Platform embed (generic URL)
  643. {
  644. 'url': 'http://lenta.ru/news/2015/03/06/navalny/',
  645. 'info_dict': {
  646. 'id': '227304',
  647. 'ext': 'mp4',
  648. 'title': 'Навальный вышел на свободу',
  649. 'description': 'md5:d97861ac9ae77377f3f20eaf9d04b4f5',
  650. 'thumbnail': 're:^https?://.*\.jpg$',
  651. 'duration': 87,
  652. 'view_count': int,
  653. 'age_limit': 0,
  654. },
  655. },
  656. # ClipYou (Eagle.Platform) embed (custom URL)
  657. {
  658. 'url': 'http://muz-tv.ru/play/7129/',
  659. 'info_dict': {
  660. 'id': '12820',
  661. 'ext': 'mp4',
  662. 'title': "'O Sole Mio",
  663. 'thumbnail': 're:^https?://.*\.jpg$',
  664. 'duration': 216,
  665. 'view_count': int,
  666. },
  667. },
  668. # Pladform embed
  669. {
  670. 'url': 'http://muz-tv.ru/kinozal/view/7400/',
  671. 'info_dict': {
  672. 'id': '100183293',
  673. 'ext': 'mp4',
  674. 'title': 'Тайны перевала Дятлова • 1 серия 2 часть',
  675. 'description': 'Документальный сериал-расследование одной из самых жутких тайн ХХ века',
  676. 'thumbnail': 're:^https?://.*\.jpg$',
  677. 'duration': 694,
  678. 'age_limit': 0,
  679. },
  680. },
  681. # Playwire embed
  682. {
  683. 'url': 'http://www.cinemablend.com/new/First-Joe-Dirt-2-Trailer-Teaser-Stupid-Greatness-70874.html',
  684. 'info_dict': {
  685. 'id': '3519514',
  686. 'ext': 'mp4',
  687. 'title': 'Joe Dirt 2 Beautiful Loser Teaser Trailer',
  688. 'thumbnail': 're:^https?://.*\.png$',
  689. 'duration': 45.115,
  690. },
  691. },
  692. # 5min embed
  693. {
  694. 'url': 'http://techcrunch.com/video/facebook-creates-on-this-day-crunch-report/518726732/',
  695. 'md5': '4c6f127a30736b59b3e2c19234ee2bf7',
  696. 'info_dict': {
  697. 'id': '518726732',
  698. 'ext': 'mp4',
  699. 'title': 'Facebook Creates "On This Day" | Crunch Report',
  700. },
  701. },
  702. # SVT embed
  703. {
  704. 'url': 'http://www.svt.se/sport/ishockey/jagr-tacklar-giroux-under-intervjun',
  705. 'info_dict': {
  706. 'id': '2900353',
  707. 'ext': 'flv',
  708. 'title': 'Här trycker Jagr till Giroux (under SVT-intervjun)',
  709. 'duration': 27,
  710. 'age_limit': 0,
  711. },
  712. },
  713. # Crooks and Liars embed
  714. {
  715. 'url': 'http://crooksandliars.com/2015/04/fox-friends-says-protecting-atheists',
  716. 'info_dict': {
  717. 'id': '8RUoRhRi',
  718. 'ext': 'mp4',
  719. 'title': "Fox & Friends Says Protecting Atheists From Discrimination Is Anti-Christian!",
  720. 'description': 'md5:e1a46ad1650e3a5ec7196d432799127f',
  721. 'timestamp': 1428207000,
  722. 'upload_date': '20150405',
  723. 'uploader': 'Heather',
  724. },
  725. },
  726. # Crooks and Liars external embed
  727. {
  728. 'url': 'http://theothermccain.com/2010/02/02/video-proves-that-bill-kristol-has-been-watching-glenn-beck/comment-page-1/',
  729. 'info_dict': {
  730. 'id': 'MTE3MjUtMzQ2MzA',
  731. 'ext': 'mp4',
  732. 'title': 'md5:5e3662a81a4014d24c250d76d41a08d5',
  733. 'description': 'md5:9b8e9542d6c3c5de42d6451b7d780cec',
  734. 'timestamp': 1265032391,
  735. 'upload_date': '20100201',
  736. 'uploader': 'Heather',
  737. },
  738. },
  739. # NBC Sports vplayer embed
  740. {
  741. 'url': 'http://www.riderfans.com/forum/showthread.php?121827-Freeman&s=e98fa1ea6dc08e886b1678d35212494a',
  742. 'info_dict': {
  743. 'id': 'ln7x1qSThw4k',
  744. 'ext': 'flv',
  745. 'title': "PFT Live: New leader in the 'new-look' defense",
  746. 'description': 'md5:65a19b4bbfb3b0c0c5768bed1dfad74e',
  747. },
  748. },
  749. # UDN embed
  750. {
  751. 'url': 'http://www.udn.com/news/story/7314/822787',
  752. 'md5': 'fd2060e988c326991037b9aff9df21a6',
  753. 'info_dict': {
  754. 'id': '300346',
  755. 'ext': 'mp4',
  756. 'title': '中一中男師變性 全校師生力挺',
  757. 'thumbnail': 're:^https?://.*\.jpg$',
  758. }
  759. },
  760. # Ooyala embed
  761. {
  762. 'url': 'http://www.businessinsider.com/excel-index-match-vlookup-video-how-to-2015-2?IR=T',
  763. 'info_dict': {
  764. 'id': '50YnY4czr4ms1vJ7yz3xzq0excz_pUMs',
  765. 'ext': 'mp4',
  766. 'description': 'VIDEO: Index/Match versus VLOOKUP.',
  767. 'title': 'This is what separates the Excel masters from the wannabes',
  768. },
  769. 'params': {
  770. # m3u8 downloads
  771. 'skip_download': True,
  772. }
  773. },
  774. # Contains a SMIL manifest
  775. {
  776. 'url': 'http://www.telewebion.com/fa/1263668/%D9%82%D8%B1%D8%B9%D9%87%E2%80%8C%DA%A9%D8%B4%DB%8C-%D9%84%DB%8C%DA%AF-%D9%82%D9%87%D8%B1%D9%85%D8%A7%D9%86%D8%A7%D9%86-%D8%A7%D8%B1%D9%88%D9%BE%D8%A7/%2B-%D9%81%D9%88%D8%AA%D8%A8%D8%A7%D9%84.html',
  777. 'info_dict': {
  778. 'id': 'file',
  779. 'ext': 'flv',
  780. 'title': '+ Football: Lottery Champions League Europe',
  781. 'uploader': 'www.telewebion.com',
  782. },
  783. 'params': {
  784. # rtmpe downloads
  785. 'skip_download': True,
  786. }
  787. }
  788. ]
  789. def report_following_redirect(self, new_url):
  790. """Report information extraction."""
  791. self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
  792. def _extract_rss(self, url, video_id, doc):
  793. playlist_title = doc.find('./channel/title').text
  794. playlist_desc_el = doc.find('./channel/description')
  795. playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
  796. entries = []
  797. for it in doc.findall('./channel/item'):
  798. next_url = xpath_text(it, 'link', fatal=False)
  799. if not next_url:
  800. enclosure_nodes = it.findall('./enclosure')
  801. for e in enclosure_nodes:
  802. next_url = e.attrib.get('url')
  803. if next_url:
  804. break
  805. if not next_url:
  806. continue
  807. entries.append({
  808. '_type': 'url',
  809. 'url': next_url,
  810. 'title': it.find('title').text,
  811. })
  812. return {
  813. '_type': 'playlist',
  814. 'id': url,
  815. 'title': playlist_title,
  816. 'description': playlist_desc,
  817. 'entries': entries,
  818. }
  819. def _extract_camtasia(self, url, video_id, webpage):
  820. """ Returns None if no camtasia video can be found. """
  821. camtasia_cfg = self._search_regex(
  822. r'fo\.addVariable\(\s*"csConfigFile",\s*"([^"]+)"\s*\);',
  823. webpage, 'camtasia configuration file', default=None)
  824. if camtasia_cfg is None:
  825. return None
  826. title = self._html_search_meta('DC.title', webpage, fatal=True)
  827. camtasia_url = compat_urlparse.urljoin(url, camtasia_cfg)
  828. camtasia_cfg = self._download_xml(
  829. camtasia_url, video_id,
  830. note='Downloading camtasia configuration',
  831. errnote='Failed to download camtasia configuration')
  832. fileset_node = camtasia_cfg.find('./playlist/array/fileset')
  833. entries = []
  834. for n in fileset_node.getchildren():
  835. url_n = n.find('./uri')
  836. if url_n is None:
  837. continue
  838. entries.append({
  839. 'id': os.path.splitext(url_n.text.rpartition('/')[2])[0],
  840. 'title': '%s - %s' % (title, n.tag),
  841. 'url': compat_urlparse.urljoin(url, url_n.text),
  842. 'duration': float_or_none(n.find('./duration').text),
  843. })
  844. return {
  845. '_type': 'playlist',
  846. 'entries': entries,
  847. 'title': title,
  848. }
  849. def _real_extract(self, url):
  850. if url.startswith('//'):
  851. return {
  852. '_type': 'url',
  853. 'url': self.http_scheme() + url,
  854. }
  855. parsed_url = compat_urlparse.urlparse(url)
  856. if not parsed_url.scheme:
  857. default_search = self._downloader.params.get('default_search')
  858. if default_search is None:
  859. default_search = 'fixup_error'
  860. if default_search in ('auto', 'auto_warning', 'fixup_error'):
  861. if '/' in url:
  862. self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
  863. return self.url_result('http://' + url)
  864. elif default_search != 'fixup_error':
  865. if default_search == 'auto_warning':
  866. if re.match(r'^(?:url|URL)$', url):
  867. raise ExtractorError(
  868. 'Invalid URL: %r . Call youtube-dl like this: youtube-dl -v "https://www.youtube.com/watch?v=BaW_jenozKc" ' % url,
  869. expected=True)
  870. else:
  871. self._downloader.report_warning(
  872. 'Falling back to youtube search for %s . Set --default-search "auto" to suppress this warning.' % url)
  873. return self.url_result('ytsearch:' + url)
  874. if default_search in ('error', 'fixup_error'):
  875. raise ExtractorError(
  876. '%r is not a valid URL. '
  877. 'Set --default-search "ytsearch" (or run youtube-dl "ytsearch:%s" ) to search YouTube'
  878. % (url, url), expected=True)
  879. else:
  880. if ':' not in default_search:
  881. default_search += ':'
  882. return self.url_result(default_search + url)
  883. url, smuggled_data = unsmuggle_url(url)
  884. force_videoid = None
  885. is_intentional = smuggled_data and smuggled_data.get('to_generic')
  886. if smuggled_data and 'force_videoid' in smuggled_data:
  887. force_videoid = smuggled_data['force_videoid']
  888. video_id = force_videoid
  889. else:
  890. video_id = compat_urllib_parse_unquote(os.path.splitext(url.rstrip('/').split('/')[-1])[0])
  891. self.to_screen('%s: Requesting header' % video_id)
  892. head_req = HEADRequest(url)
  893. head_response = self._request_webpage(
  894. head_req, video_id,
  895. note=False, errnote='Could not send HEAD request to %s' % url,
  896. fatal=False)
  897. if head_response is not False:
  898. # Check for redirect
  899. new_url = head_response.geturl()
  900. if url != new_url:
  901. self.report_following_redirect(new_url)
  902. if force_videoid:
  903. new_url = smuggle_url(
  904. new_url, {'force_videoid': force_videoid})
  905. return self.url_result(new_url)
  906. full_response = None
  907. if head_response is False:
  908. request = compat_urllib_request.Request(url)
  909. request.add_header('Accept-Encoding', '*')
  910. full_response = self._request_webpage(request, video_id)
  911. head_response = full_response
  912. # Check for direct link to a video
  913. content_type = head_response.headers.get('Content-Type', '')
  914. m = re.match(r'^(?P<type>audio|video|application(?=/ogg$))/(?P<format_id>.+)$', content_type)
  915. if m:
  916. upload_date = unified_strdate(
  917. head_response.headers.get('Last-Modified'))
  918. return {
  919. 'id': video_id,
  920. 'title': compat_urllib_parse_unquote(os.path.splitext(url_basename(url))[0]),
  921. 'direct': True,
  922. 'formats': [{
  923. 'format_id': m.group('format_id'),
  924. 'url': url,
  925. 'vcodec': 'none' if m.group('type') == 'audio' else None
  926. }],
  927. 'upload_date': upload_date,
  928. }
  929. if not self._downloader.params.get('test', False) and not is_intentional:
  930. self._downloader.report_warning('Falling back on generic information extractor.')
  931. if not full_response:
  932. request = compat_urllib_request.Request(url)
  933. # Some webservers may serve compressed content of rather big size (e.g. gzipped flac)
  934. # making it impossible to download only chunk of the file (yet we need only 512kB to
  935. # test whether it's HTML or not). According to youtube-dl default Accept-Encoding
  936. # that will always result in downloading the whole file that is not desirable.
  937. # Therefore for extraction pass we have to override Accept-Encoding to any in order
  938. # to accept raw bytes and being able to download only a chunk.
  939. # It may probably better to solve this by checking Content-Type for application/octet-stream
  940. # after HEAD request finishes, but not sure if we can rely on this.
  941. request.add_header('Accept-Encoding', '*')
  942. full_response = self._request_webpage(request, video_id)
  943. # Maybe it's a direct link to a video?
  944. # Be careful not to download the whole thing!
  945. first_bytes = full_response.read(512)
  946. if not is_html(first_bytes):
  947. self._downloader.report_warning(
  948. 'URL could be a direct video link, returning it as such.')
  949. upload_date = unified_strdate(
  950. head_response.headers.get('Last-Modified'))
  951. return {
  952. 'id': video_id,
  953. 'title': compat_urllib_parse_unquote(os.path.splitext(url_basename(url))[0]),
  954. 'direct': True,
  955. 'url': url,
  956. 'upload_date': upload_date,
  957. }
  958. webpage = self._webpage_read_content(
  959. full_response, url, video_id, prefix=first_bytes)
  960. self.report_extraction(video_id)
  961. # Is it an RSS feed?
  962. try:
  963. doc = parse_xml(webpage)
  964. if doc.tag == 'rss':
  965. return self._extract_rss(url, video_id, doc)
  966. except compat_xml_parse_error:
  967. pass
  968. # Is it a Camtasia project?
  969. camtasia_res = self._extract_camtasia(url, video_id, webpage)
  970. if camtasia_res is not None:
  971. return camtasia_res
  972. # Sometimes embedded video player is hidden behind percent encoding
  973. # (e.g. https://github.com/rg3/youtube-dl/issues/2448)
  974. # Unescaping the whole page allows to handle those cases in a generic way
  975. webpage = compat_urllib_parse.unquote(webpage)
  976. # it's tempting to parse this further, but you would
  977. # have to take into account all the variations like
  978. # Video Title - Site Name
  979. # Site Name | Video Title
  980. # Video Title - Tagline | Site Name
  981. # and so on and so forth; it's just not practical
  982. video_title = self._html_search_regex(
  983. r'(?s)<title>(.*?)</title>', webpage, 'video title',
  984. default='video')
  985. # Try to detect age limit automatically
  986. age_limit = self._rta_search(webpage)
  987. # And then there are the jokers who advertise that they use RTA,
  988. # but actually don't.
  989. AGE_LIMIT_MARKERS = [
  990. r'Proudly Labeled <a href="http://www.rtalabel.org/" title="Restricted to Adults">RTA</a>',
  991. ]
  992. if any(re.search(marker, webpage) for marker in AGE_LIMIT_MARKERS):
  993. age_limit = 18
  994. # video uploader is domain name
  995. video_uploader = self._search_regex(
  996. r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
  997. # Helper method
  998. def _playlist_from_matches(matches, getter=None, ie=None):
  999. urlrs = orderedSet(
  1000. self.url_result(self._proto_relative_url(getter(m) if getter else m), ie)
  1001. for m in matches)
  1002. return self.playlist_result(
  1003. urlrs, playlist_id=video_id, playlist_title=video_title)
  1004. # Look for BrightCove:
  1005. bc_urls = BrightcoveIE._extract_brightcove_urls(webpage)
  1006. if bc_urls:
  1007. self.to_screen('Brightcove video detected.')
  1008. entries = [{
  1009. '_type': 'url',
  1010. 'url': smuggle_url(bc_url, {'Referer': url}),
  1011. 'ie_key': 'Brightcove'
  1012. } for bc_url in bc_urls]
  1013. return {
  1014. '_type': 'playlist',
  1015. 'title': video_title,
  1016. 'id': video_id,
  1017. 'entries': entries,
  1018. }
  1019. # Look for embedded rtl.nl player
  1020. matches = re.findall(
  1021. r'<iframe\s+(?:[a-zA-Z-]+="[^"]+"\s+)*?src="((?:https?:)?//(?:www\.)?rtl\.nl/system/videoplayer/[^"]+video_embed[^"]+)"',
  1022. webpage)
  1023. if matches:
  1024. return _playlist_from_matches(matches, ie='RtlNl')
  1025. # Look for embedded (iframe) Vimeo player
  1026. mobj = re.search(
  1027. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//player\.vimeo\.com/video/.+?)\1', webpage)
  1028. if mobj:
  1029. player_url = unescapeHTML(mobj.group('url'))
  1030. surl = smuggle_url(player_url, {'Referer': url})
  1031. return self.url_result(surl)
  1032. # Look for embedded (swf embed) Vimeo player
  1033. mobj = re.search(
  1034. r'<embed[^>]+?src="((?:https?:)?//(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
  1035. if mobj:
  1036. return self.url_result(mobj.group(1))
  1037. # Look for embedded YouTube player
  1038. matches = re.findall(r'''(?x)
  1039. (?:
  1040. <iframe[^>]+?src=|
  1041. data-video-url=|
  1042. <embed[^>]+?src=|
  1043. embedSWF\(?:\s*|
  1044. new\s+SWFObject\(
  1045. )
  1046. (["\'])
  1047. (?P<url>(?:https?:)?//(?:www\.)?youtube(?:-nocookie)?\.com/
  1048. (?:embed|v|p)/.+?)
  1049. \1''', webpage)
  1050. if matches:
  1051. return _playlist_from_matches(
  1052. matches, lambda m: unescapeHTML(m[1]))
  1053. # Look for lazyYT YouTube embed
  1054. matches = re.findall(
  1055. r'class="lazyYT" data-youtube-id="([^"]+)"', webpage)
  1056. if matches:
  1057. return _playlist_from_matches(matches, lambda m: unescapeHTML(m))
  1058. # Look for embedded Dailymotion player
  1059. matches = re.findall(
  1060. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/embed/video/.+?)\1', webpage)
  1061. if matches:
  1062. return _playlist_from_matches(
  1063. matches, lambda m: unescapeHTML(m[1]))
  1064. # Look for embedded Dailymotion playlist player (#3822)
  1065. m = re.search(
  1066. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.[a-z]{2,3}/widget/jukebox\?.+?)\1', webpage)
  1067. if m:
  1068. playlists = re.findall(
  1069. r'list\[\]=/playlist/([^/]+)/', unescapeHTML(m.group('url')))
  1070. if playlists:
  1071. return _playlist_from_matches(
  1072. playlists, lambda p: '//dailymotion.com/playlist/%s' % p)
  1073. # Look for embedded Wistia player
  1074. match = re.search(
  1075. r'<(?:meta[^>]+?content|iframe[^>]+?src)=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
  1076. if match:
  1077. embed_url = self._proto_relative_url(
  1078. unescapeHTML(match.group('url')))
  1079. return {
  1080. '_type': 'url_transparent',
  1081. 'url': embed_url,
  1082. 'ie_key': 'Wistia',
  1083. 'uploader': video_uploader,
  1084. 'title': video_title,
  1085. 'id': video_id,
  1086. }
  1087. match = re.search(r'(?:id=["\']wistia_|data-wistia-?id=["\']|Wistia\.embed\(["\'])(?P<id>[^"\']+)', webpage)
  1088. if match:
  1089. return {
  1090. '_type': 'url_transparent',
  1091. 'url': 'http://fast.wistia.net/embed/iframe/{0:}'.format(match.group('id')),
  1092. 'ie_key': 'Wistia',
  1093. 'uploader': video_uploader,
  1094. 'title': video_title,
  1095. 'id': match.group('id')
  1096. }
  1097. # Look for embedded blip.tv player
  1098. bliptv_url = BlipTVIE._extract_url(webpage)
  1099. if bliptv_url:
  1100. return self.url_result(bliptv_url, 'BlipTV')
  1101. # Look for SVT player
  1102. svt_url = SVTIE._extract_url(webpage)
  1103. if svt_url:
  1104. return self.url_result(svt_url, 'SVT')
  1105. # Look for embedded condenast player
  1106. matches = re.findall(
  1107. r'<iframe\s+(?:[a-zA-Z-]+="[^"]+"\s+)*?src="(https?://player\.cnevids\.com/embed/[^"]+")',
  1108. webpage)
  1109. if matches:
  1110. return {
  1111. '_type': 'playlist',
  1112. 'entries': [{
  1113. '_type': 'url',
  1114. 'ie_key': 'CondeNast',
  1115. 'url': ma,
  1116. } for ma in matches],
  1117. 'title': video_title,
  1118. 'id': video_id,
  1119. }
  1120. # Look for Bandcamp pages with custom domain
  1121. mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
  1122. if mobj is not None:
  1123. burl = unescapeHTML(mobj.group(1))
  1124. # Don't set the extractor because it can be a track url or an album
  1125. return self.url_result(burl)
  1126. # Look for embedded Vevo player
  1127. mobj = re.search(
  1128. r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
  1129. if mobj is not None:
  1130. return self.url_result(mobj.group('url'))
  1131. # Look for embedded Viddler player
  1132. mobj = re.search(
  1133. r'<(?:iframe[^>]+?src|param[^>]+?value)=(["\'])(?P<url>(?:https?:)?//(?:www\.)?viddler\.com/(?:embed|player)/.+?)\1',
  1134. webpage)
  1135. if mobj is not None:
  1136. return self.url_result(mobj.group('url'))
  1137. # Look for NYTimes player
  1138. mobj = re.search(
  1139. r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//graphics8\.nytimes\.com/bcvideo/[^/]+/iframe/embed\.html.+?)\1>',
  1140. webpage)
  1141. if mobj is not None:
  1142. return self.url_result(mobj.group('url'))
  1143. # Look for Libsyn player
  1144. mobj = re.search(
  1145. r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//html5-player\.libsyn\.com/embed/.+?)\1', webpage)
  1146. if mobj is not None:
  1147. return self.url_result(mobj.group('url'))
  1148. # Look for Ooyala videos
  1149. mobj = (re.search(r'player\.ooyala\.com/[^"?]+\?[^"]*?(?:embedCode|ec)=(?P<ec>[^"&]+)', webpage) or
  1150. re.search(r'OO\.Player\.create\([\'"].*?[\'"],\s*[\'"](?P<ec>.{32})[\'"]', webpage) or
  1151. re.search(r'SBN\.VideoLinkset\.ooyala\([\'"](?P<ec>.{32})[\'"]\)', webpage) or
  1152. re.search(r'data-ooyala-video-id\s*=\s*[\'"](?P<ec>.{32})[\'"]', webpage))
  1153. if mobj is not None:
  1154. return OoyalaIE._build_url_result(mobj.group('ec'))
  1155. # Look for multiple Ooyala embeds on SBN network websites
  1156. mobj = re.search(r'SBN\.VideoLinkset\.entryGroup\((\[.*?\])', webpage)
  1157. if mobj is not None:
  1158. embeds = self._parse_json(mobj.group(1), video_id, fatal=False)
  1159. if embeds:
  1160. return _playlist_from_matches(
  1161. embeds, getter=lambda v: OoyalaIE._url_for_embed_code(v['provider_video_id']), ie='Ooyala')
  1162. # Look for Aparat videos
  1163. mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
  1164. if mobj is not None:
  1165. return self.url_result(mobj.group(1), 'Aparat')
  1166. # Look for MPORA videos
  1167. mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
  1168. if mobj is not None:
  1169. return self.url_result(mobj.group(1), 'Mpora')
  1170. # Look for embedded NovaMov-based player
  1171. mobj = re.search(
  1172. r'''(?x)<(?:pagespeed_)?iframe[^>]+?src=(["\'])
  1173. (?P<url>http://(?:(?:embed|www)\.)?
  1174. (?:novamov\.com|
  1175. nowvideo\.(?:ch|sx|eu|at|ag|co)|
  1176. videoweed\.(?:es|com)|
  1177. movshare\.(?:net|sx|ag)|
  1178. divxstage\.(?:eu|net|ch|co|at|ag))
  1179. /embed\.php.+?)\1''', webpage)
  1180. if mobj is not None:
  1181. return self.url_result(mobj.group('url'))
  1182. # Look for embedded Facebook player
  1183. mobj = re.search(
  1184. r'<iframe[^>]+?src=(["\'])(?P<url>https://www\.facebook\.com/video/embed.+?)\1', webpage)
  1185. if mobj is not None:
  1186. return self.url_result(mobj.group('url'), 'Facebook')
  1187. # Look for embedded VK player
  1188. mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
  1189. if mobj is not None:
  1190. return self.url_result(mobj.group('url'), 'VK')
  1191. # Look for embedded ivi player
  1192. mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage)
  1193. if mobj is not None:
  1194. return self.url_result(mobj.group('url'), 'Ivi')
  1195. # Look for embedded Huffington Post player
  1196. mobj = re.search(
  1197. r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
  1198. if mobj is not None:
  1199. return self.url_result(mobj.group('url'), 'HuffPost')
  1200. # Look for embed.ly
  1201. mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
  1202. if mobj is not None:
  1203. return self.url_result(mobj.group('url'))
  1204. mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
  1205. if mobj is not None:
  1206. return self.url_result(compat_urllib_parse.unquote(mobj.group('url')))
  1207. # Look for funnyordie embed
  1208. matches = re.findall(r'<iframe[^>]+?src="(https?://(?:www\.)?funnyordie\.com/embed/[^"]+)"', webpage)
  1209. if matches:
  1210. return _playlist_from_matches(
  1211. matches, getter=unescapeHTML, ie='FunnyOrDie')
  1212. # Look for BBC iPlayer embed
  1213. matches = re.findall(r'setPlaylist\("(https?://www\.bbc\.co\.uk/iplayer/[^/]+/[\da-z]{8})"\)', webpage)
  1214. if matches:
  1215. return _playlist_from_matches(matches, ie='BBCCoUk')
  1216. # Look for embedded RUTV player
  1217. rutv_url = RUTVIE._extract_url(webpage)
  1218. if rutv_url:
  1219. return self.url_result(rutv_url, 'RUTV')
  1220. # Look for embedded SportBox player
  1221. sportbox_urls = SportBoxEmbedIE._extract_urls(webpage)
  1222. if sportbox_urls:
  1223. return _playlist_from_matches(sportbox_urls, ie='SportBoxEmbed')
  1224. # Look for embedded TED player
  1225. mobj = re.search(
  1226. r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed(?:-ssl)?\.ted\.com/.+?)\1', webpage)
  1227. if mobj is not None:
  1228. return self.url_result(mobj.group('url'), 'TED')
  1229. # Look for embedded Ustream videos
  1230. mobj = re.search(
  1231. r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage)
  1232. if mobj is not None:
  1233. return self.url_result(mobj.group('url'), 'Ustream')
  1234. # Look for embedded arte.tv player
  1235. mobj = re.search(
  1236. r'<script [^>]*?src="(?P<url>http://www\.arte\.tv/playerv2/embed[^"]+)"',
  1237. webpage)
  1238. if mobj is not None:
  1239. return self.url_result(mobj.group('url'), 'ArteTVEmbed')
  1240. # Look for embedded smotri.com player
  1241. smotri_url = SmotriIE._extract_url(webpage)
  1242. if smotri_url:
  1243. return self.url_result(smotri_url, 'Smotri')
  1244. # Look for embeded soundcloud player
  1245. mobj = re.search(
  1246. r'<iframe\s+(?:[a-zA-Z0-9_-]+="[^"]+"\s+)*src="(?P<url>https?://(?:w\.)?soundcloud\.com/player[^"]+)"',
  1247. webpage)
  1248. if mobj is not None:
  1249. url = unescapeHTML(mobj.group('url'))
  1250. return self.url_result(url)
  1251. # Look for embedded vulture.com player
  1252. mobj = re.search(
  1253. r'<iframe src="(?P<url>https?://video\.vulture\.com/[^"]+)"',
  1254. webpage)
  1255. if mobj is not None:
  1256. url = unescapeHTML(mobj.group('url'))
  1257. return self.url_result(url, ie='Vulture')
  1258. # Look for embedded mtvservices player
  1259. mobj = re.search(
  1260. r'<iframe src="(?P<url>https?://media\.mtvnservices\.com/embed/[^"]+)"',
  1261. webpage)
  1262. if mobj is not None:
  1263. url = unescapeHTML(mobj.group('url'))
  1264. return self.url_result(url, ie='MTVServicesEmbedded')
  1265. # Look for embedded yahoo player
  1266. mobj = re.search(
  1267. r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1',
  1268. webpage)
  1269. if mobj is not None:
  1270. return self.url_result(mobj.group('url'), 'Yahoo')
  1271. # Look for embedded sbs.com.au player
  1272. mobj = re.search(
  1273. r'''(?x)
  1274. (?:
  1275. <meta\s+property="og:video"\s+content=|
  1276. <iframe[^>]+?src=
  1277. )
  1278. (["\'])(?P<url>https?://(?:www\.)?sbs\.com\.au/ondemand/video/.+?)\1''',
  1279. webpage)
  1280. if mobj is not None:
  1281. return self.url_result(mobj.group('url'), 'SBS')
  1282. # Look for embedded Cinchcast player
  1283. mobj = re.search(
  1284. r'<iframe[^>]+?src=(["\'])(?P<url>https?://player\.cinchcast\.com/.+?)\1',
  1285. webpage)
  1286. if mobj is not None:
  1287. return self.url_result(mobj.group('url'), 'Cinchcast')
  1288. mobj = re.search(
  1289. r'<iframe[^>]+?src=(["\'])(?P<url>https?://m(?:lb)?\.mlb\.com/shared/video/embed/embed\.html\?.+?)\1',
  1290. webpage)
  1291. if not mobj:
  1292. mobj = re.search(
  1293. r'data-video-link=["\'](?P<url>http://m.mlb.com/video/[^"\']+)',
  1294. webpage)
  1295. if mobj is not None:
  1296. return self.url_result(mobj.group('url'), 'MLB')
  1297. mobj = re.search(
  1298. r'<iframe[^>]+?src=(["\'])(?P<url>%s)\1' % CondeNastIE.EMBED_URL,
  1299. webpage)
  1300. if mobj is not None:
  1301. return self.url_result(self._proto_relative_url(mobj.group('url'), scheme='http:'), 'CondeNast')
  1302. mobj = re.search(
  1303. r'<iframe[^>]+src="(?P<url>https?://new\.livestream\.com/[^"]+/player[^"]+)"',
  1304. webpage)
  1305. if mobj is not None:
  1306. return self.url_result(mobj.group('url'), 'Livestream')
  1307. # Look for Zapiks embed
  1308. mobj = re.search(
  1309. r'<iframe[^>]+src="(?P<url>https?://(?:www\.)?zapiks\.fr/index\.php\?.+?)"', webpage)
  1310. if mobj is not None:
  1311. return self.url_result(mobj.group('url'), 'Zapiks')
  1312. # Look for Kaltura embeds
  1313. mobj = re.search(
  1314. r"(?s)kWidget\.(?:thumb)?[Ee]mbed\(\{.*?'wid'\s*:\s*'_?(?P<partner_id>[^']+)',.*?'entry_id'\s*:\s*'(?P<id>[^']+)',", webpage)
  1315. if mobj is not None:
  1316. return self.url_result('kaltura:%(partner_id)s:%(id)s' % mobj.groupdict(), 'Kaltura')
  1317. # Look for Eagle.Platform embeds
  1318. mobj = re.search(
  1319. r'<iframe[^>]+src="(?P<url>https?://.+?\.media\.eagleplatform\.com/index/player\?.+?)"', webpage)
  1320. if mobj is not None:
  1321. return self.url_result(mobj.group('url'), 'EaglePlatform')
  1322. # Look for ClipYou (uses Eagle.Platform) embeds
  1323. mobj = re.search(
  1324. r'<iframe[^>]+src="https?://(?P<host>media\.clipyou\.ru)/index/player\?.*\brecord_id=(?P<id>\d+).*"', webpage)
  1325. if mobj is not None:
  1326. return self.url_result('eagleplatform:%(host)s:%(id)s' % mobj.groupdict(), 'EaglePlatform')
  1327. # Look for Pladform embeds
  1328. mobj = re.search(
  1329. r'<iframe[^>]+src="(?P<url>https?://out\.pladform\.ru/player\?.+?)"', webpage)
  1330. if mobj is not None:
  1331. return self.url_result(mobj.group('url'), 'Pladform')
  1332. # Look for Playwire embeds
  1333. mobj = re.search(
  1334. r'<script[^>]+data-config=(["\'])(?P<url>(?:https?:)?//config\.playwire\.com/.+?)\1', webpage)
  1335. if mobj is not None:
  1336. return self.url_result(mobj.group('url'))
  1337. # Look for 5min embeds
  1338. mobj = re.search(
  1339. r'<meta[^>]+property="og:video"[^>]+content="https?://embed\.5min\.com/(?P<id>[0-9]+)/?', webpage)
  1340. if mobj is not None:
  1341. return self.url_result('5min:%s' % mobj.group('id'), 'FiveMin')
  1342. # Look for Crooks and Liars embeds
  1343. mobj = re.search(
  1344. r'<(?:iframe[^>]+src|param[^>]+value)=(["\'])(?P<url>(?:https?:)?//embed\.crooksandliars\.com/(?:embed|v)/.+?)\1', webpage)
  1345. if mobj is not None:
  1346. return self.url_result(mobj.group('url'))
  1347. # Look for NBC Sports VPlayer embeds
  1348. nbc_sports_url = NBCSportsVPlayerIE._extract_url(webpage)
  1349. if nbc_sports_url:
  1350. return self.url_result(nbc_sports_url, 'NBCSportsVPlayer')
  1351. # Look for UDN embeds
  1352. mobj = re.search(
  1353. r'<iframe[^>]+src="(?P<url>%s)"' % UDNEmbedIE._VALID_URL, webpage)
  1354. if mobj is not None:
  1355. return self.url_result(
  1356. compat_urlparse.urljoin(url, mobj.group('url')), 'UDNEmbed')
  1357. # Look for Senate ISVP iframe
  1358. senate_isvp_url = SenateISVPIE._search_iframe_url(webpage)
  1359. if senate_isvp_url:
  1360. return self.url_result(senate_isvp_url, 'SenateISVP')
  1361. def check_video(vurl):
  1362. if YoutubeIE.suitable(vurl):
  1363. return True
  1364. vpath = compat_urlparse.urlparse(vurl).path
  1365. vext = determine_ext(vpath)
  1366. return '.' in vpath and vext not in ('swf', 'png', 'jpg', 'srt', 'sbv', 'sub', 'vtt', 'ttml')
  1367. def filter_video(urls):
  1368. return list(filter(check_video, urls))
  1369. # Start with something easy: JW Player in SWFObject
  1370. found = filter_video(re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage))
  1371. if not found:
  1372. # Look for gorilla-vid style embedding
  1373. found = filter_video(re.findall(r'''(?sx)
  1374. (?:
  1375. jw_plugins|
  1376. JWPlayerOptions|
  1377. jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
  1378. )
  1379. .*?
  1380. ['"]?file['"]?\s*:\s*["\'](.*?)["\']''', webpage))
  1381. if not found:
  1382. # Broaden the search a little bit
  1383. found = filter_video(re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage))
  1384. if not found:
  1385. # Broaden the findall a little bit: JWPlayer JS loader
  1386. found = filter_video(re.findall(
  1387. r'[^A-Za-z0-9]?file["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage))
  1388. if not found:
  1389. # Flow player
  1390. found = filter_video(re.findall(r'''(?xs)
  1391. flowplayer\("[^"]+",\s*
  1392. \{[^}]+?\}\s*,
  1393. \s*\{[^}]+? ["']?clip["']?\s*:\s*\{\s*
  1394. ["']?url["']?\s*:\s*["']([^"']+)["']
  1395. ''', webpage))
  1396. if not found:
  1397. # Cinerama player
  1398. found = re.findall(
  1399. r"cinerama\.embedPlayer\(\s*\'[^']+\',\s*'([^']+)'", webpage)
  1400. if not found:
  1401. # Try to find twitter cards info
  1402. found = filter_video(re.findall(
  1403. r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage))
  1404. if not found:
  1405. # We look for Open Graph info:
  1406. # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
  1407. m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
  1408. # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
  1409. if m_video_type is not None:
  1410. found = filter_video(re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage))
  1411. if not found:
  1412. # HTML5 video
  1413. found = re.findall(r'(?s)<video[^<]*(?:>.*?<source[^>]*)?\s+src=["\'](.*?)["\']', webpage)
  1414. if not found:
  1415. REDIRECT_REGEX = r'[0-9]{,2};\s*(?:URL|url)=\'?([^\'"]+)'
  1416. found = re.search(
  1417. r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
  1418. r'(?:[a-z-]+="[^"]+"\s+)*?content="%s' % REDIRECT_REGEX,
  1419. webpage)
  1420. if not found:
  1421. # Look also in Refresh HTTP header
  1422. refresh_header = head_response.headers.get('Refresh')
  1423. if refresh_header:
  1424. found = re.search(REDIRECT_REGEX, refresh_header)
  1425. if found:
  1426. new_url = compat_urlparse.urljoin(url, found.group(1))
  1427. self.report_following_redirect(new_url)
  1428. return {
  1429. '_type': 'url',
  1430. 'url': new_url,
  1431. }
  1432. if not found:
  1433. raise UnsupportedError(url)
  1434. entries = []
  1435. for video_url in found:
  1436. video_url = compat_urlparse.urljoin(url, video_url)
  1437. video_id = compat_urllib_parse.unquote(os.path.basename(video_url))
  1438. # Sometimes, jwplayer extraction will result in a YouTube URL
  1439. if YoutubeIE.suitable(video_url):
  1440. entries.append(self.url_result(video_url, 'Youtube'))
  1441. continue
  1442. # here's a fun little line of code for you:
  1443. video_id = os.path.splitext(video_id)[0]
  1444. if determine_ext(video_url) == 'smil':
  1445. entries.append({
  1446. 'id': video_id,
  1447. 'formats': self._extract_smil_formats(video_url, video_id),
  1448. 'uploader': video_uploader,
  1449. 'title': video_title,
  1450. 'age_limit': age_limit,
  1451. })
  1452. else:
  1453. entries.append({
  1454. 'id': video_id,
  1455. 'url': video_url,
  1456. 'uploader': video_uploader,
  1457. 'title': video_title,
  1458. 'age_limit': age_limit,
  1459. })
  1460. if len(entries) == 1:
  1461. return entries[0]
  1462. else:
  1463. for num, e in enumerate(entries, start=1):
  1464. # 'url' results don't have a title
  1465. if e.get('title') is not None:
  1466. e['title'] = '%s (%d)' % (e['title'], num)
  1467. return {
  1468. '_type': 'playlist',
  1469. 'entries': entries,
  1470. }