generic.py 58 KB

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