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.

1397 lines
55 KiB

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