You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1829 lines
73 KiB

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