generic.py 60 KB

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