generic.py 70 KB

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