generic.py 54 KB

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