generic.py 64 KB

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