generic.py 63 KB

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