generic.py 60 KB

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