generic.py 42 KB

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