generic.py 44 KB

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