generic.py 49 KB

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