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.

627 lines
23 KiB

10 years ago
10 years ago
10 years ago
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import collections
  4. import re
  5. import sys
  6. from .common import InfoExtractor
  7. from ..compat import (
  8. compat_str,
  9. compat_urlparse,
  10. )
  11. from ..utils import (
  12. clean_html,
  13. ExtractorError,
  14. get_element_by_class,
  15. int_or_none,
  16. orderedSet,
  17. remove_start,
  18. str_to_int,
  19. unescapeHTML,
  20. unified_timestamp,
  21. urlencode_postdata,
  22. )
  23. from .dailymotion import DailymotionIE
  24. from .pladform import PladformIE
  25. from .vimeo import VimeoIE
  26. class VKBaseIE(InfoExtractor):
  27. _NETRC_MACHINE = 'vk'
  28. def _login(self):
  29. (username, password) = self._get_login_info()
  30. if username is None:
  31. return
  32. login_page, url_handle = self._download_webpage_handle(
  33. 'https://vk.com', None, 'Downloading login page')
  34. login_form = self._hidden_inputs(login_page)
  35. login_form.update({
  36. 'email': username.encode('cp1251'),
  37. 'pass': password.encode('cp1251'),
  38. })
  39. # https://new.vk.com/ serves two same remixlhk cookies in Set-Cookie header
  40. # and expects the first one to be set rather than second (see
  41. # https://github.com/rg3/youtube-dl/issues/9841#issuecomment-227871201).
  42. # As of RFC6265 the newer one cookie should be set into cookie store
  43. # what actually happens.
  44. # We will workaround this VK issue by resetting the remixlhk cookie to
  45. # the first one manually.
  46. for header, cookies in url_handle.headers.items():
  47. if header.lower() != 'set-cookie':
  48. continue
  49. if sys.version_info[0] >= 3:
  50. cookies = cookies.encode('iso-8859-1')
  51. cookies = cookies.decode('utf-8')
  52. remixlhk = re.search(r'remixlhk=(.+?);.*?\bdomain=(.+?)(?:[,;]|$)', cookies)
  53. if remixlhk:
  54. value, domain = remixlhk.groups()
  55. self._set_cookie(domain, 'remixlhk', value)
  56. break
  57. login_page = self._download_webpage(
  58. 'https://login.vk.com/?act=login', None,
  59. note='Logging in as %s' % username,
  60. data=urlencode_postdata(login_form))
  61. if re.search(r'onLoginFailed', login_page):
  62. raise ExtractorError(
  63. 'Unable to login, incorrect username and/or password', expected=True)
  64. def _real_initialize(self):
  65. self._login()
  66. class VKIE(VKBaseIE):
  67. IE_NAME = 'vk'
  68. IE_DESC = 'VK'
  69. _VALID_URL = r'''(?x)
  70. https?://
  71. (?:
  72. (?:
  73. (?:(?:m|new)\.)?vk\.com/video_|
  74. (?:www\.)?daxab.com/
  75. )
  76. ext\.php\?(?P<embed_query>.*?\boid=(?P<oid>-?\d+).*?\bid=(?P<id>\d+).*)|
  77. (?:
  78. (?:(?:m|new)\.)?vk\.com/(?:.+?\?.*?z=)?video|
  79. (?:www\.)?daxab.com/embed/
  80. )
  81. (?P<videoid>-?\d+_\d+)(?:.*\blist=(?P<list_id>[\da-f]+))?
  82. )
  83. '''
  84. _TESTS = [
  85. {
  86. 'url': 'http://vk.com/videos-77521?z=video-77521_162222515%2Fclub77521',
  87. 'md5': '0deae91935c54e00003c2a00646315f0',
  88. 'info_dict': {
  89. 'id': '162222515',
  90. 'ext': 'flv',
  91. 'title': 'ProtivoGunz - Хуёвая песня',
  92. 'uploader': 're:(?:Noize MC|Alexander Ilyashenko).*',
  93. 'duration': 195,
  94. 'timestamp': 1329060660,
  95. 'upload_date': '20120212',
  96. 'view_count': int,
  97. },
  98. },
  99. {
  100. 'url': 'http://vk.com/video205387401_165548505',
  101. 'md5': '6c0aeb2e90396ba97035b9cbde548700',
  102. 'info_dict': {
  103. 'id': '165548505',
  104. 'ext': 'mp4',
  105. 'uploader': 'Tom Cruise',
  106. 'title': 'No name',
  107. 'duration': 9,
  108. 'timestamp': 1374374880,
  109. 'upload_date': '20130721',
  110. 'view_count': int,
  111. }
  112. },
  113. {
  114. 'note': 'Embedded video',
  115. 'url': 'http://vk.com/video_ext.php?oid=32194266&id=162925554&hash=7d8c2e0d5e05aeaa&hd=1',
  116. 'md5': 'c7ce8f1f87bec05b3de07fdeafe21a0a',
  117. 'info_dict': {
  118. 'id': '162925554',
  119. 'ext': 'mp4',
  120. 'uploader': 'Vladimir Gavrin',
  121. 'title': 'Lin Dan',
  122. 'duration': 101,
  123. 'upload_date': '20120730',
  124. 'view_count': int,
  125. },
  126. 'skip': 'This video has been removed from public access.',
  127. },
  128. {
  129. # VIDEO NOW REMOVED
  130. # please update if you find a video whose URL follows the same pattern
  131. 'url': 'http://vk.com/video-8871596_164049491',
  132. 'md5': 'a590bcaf3d543576c9bd162812387666',
  133. 'note': 'Only available for registered users',
  134. 'info_dict': {
  135. 'id': '164049491',
  136. 'ext': 'mp4',
  137. 'uploader': 'Триллеры',
  138. 'title': '► Бойцовский клуб / Fight Club 1999 [HD 720]',
  139. 'duration': 8352,
  140. 'upload_date': '20121218',
  141. 'view_count': int,
  142. },
  143. 'skip': 'Requires vk account credentials',
  144. },
  145. {
  146. 'url': 'http://vk.com/hd_kino_mania?z=video-43215063_168067957%2F15c66b9b533119788d',
  147. 'md5': '4d7a5ef8cf114dfa09577e57b2993202',
  148. 'info_dict': {
  149. 'id': '168067957',
  150. 'ext': 'mp4',
  151. 'uploader': 'Киномания - лучшее из мира кино',
  152. 'title': ' ',
  153. 'duration': 7291,
  154. 'upload_date': '20140328',
  155. },
  156. 'skip': 'Requires vk account credentials',
  157. },
  158. {
  159. 'url': 'http://m.vk.com/video-43215063_169084319?list=125c627d1aa1cebb83&from=wall-43215063_2566540',
  160. 'md5': '0c45586baa71b7cb1d0784ee3f4e00a6',
  161. 'note': 'ivi.ru embed',
  162. 'info_dict': {
  163. 'id': '60690',
  164. 'ext': 'mp4',
  165. 'title': 'Книга Илая',
  166. 'duration': 6771,
  167. 'upload_date': '20140626',
  168. 'view_count': int,
  169. },
  170. 'skip': 'Only works from Russia',
  171. },
  172. {
  173. # video (removed?) only available with list id
  174. 'url': 'https://vk.com/video30481095_171201961?list=8764ae2d21f14088d4',
  175. 'md5': '091287af5402239a1051c37ec7b92913',
  176. 'info_dict': {
  177. 'id': '171201961',
  178. 'ext': 'mp4',
  179. 'title': 'ТюменцевВВ_09.07.2015',
  180. 'uploader': 'Anton Ivanov',
  181. 'duration': 109,
  182. 'upload_date': '20150709',
  183. 'view_count': int,
  184. },
  185. 'skip': 'Removed',
  186. },
  187. {
  188. # youtube embed
  189. 'url': 'https://vk.com/video276849682_170681728',
  190. 'info_dict': {
  191. 'id': 'V3K4mi0SYkc',
  192. 'ext': 'webm',
  193. 'title': "DSWD Awards 'Children's Joy Foundation, Inc.' Certificate of Registration and License to Operate",
  194. 'description': 'md5:d9903938abdc74c738af77f527ca0596',
  195. 'duration': 178,
  196. 'upload_date': '20130116',
  197. 'uploader': "Children's Joy Foundation",
  198. 'uploader_id': 'thecjf',
  199. 'view_count': int,
  200. },
  201. },
  202. {
  203. # dailymotion embed
  204. 'url': 'https://vk.com/video-37468416_456239855',
  205. 'info_dict': {
  206. 'id': 'k3lz2cmXyRuJQSjGHUv',
  207. 'ext': 'mp4',
  208. 'title': 'md5:d52606645c20b0ddbb21655adaa4f56f',
  209. 'description': 'md5:c651358f03c56f1150b555c26d90a0fd',
  210. 'uploader': 'AniLibria.Tv',
  211. 'upload_date': '20160914',
  212. 'uploader_id': 'x1p5vl5',
  213. 'timestamp': 1473877246,
  214. },
  215. 'params': {
  216. 'skip_download': True,
  217. },
  218. },
  219. {
  220. # video key is extra_data not url\d+
  221. 'url': 'http://vk.com/video-110305615_171782105',
  222. 'md5': 'e13fcda136f99764872e739d13fac1d1',
  223. 'info_dict': {
  224. 'id': '171782105',
  225. 'ext': 'mp4',
  226. 'title': 'S-Dance, репетиции к The way show',
  227. 'uploader': 'THE WAY SHOW | 17 апреля',
  228. 'timestamp': 1454870100,
  229. 'upload_date': '20160207',
  230. 'view_count': int,
  231. },
  232. },
  233. {
  234. # finished live stream, postlive_mp4
  235. 'url': 'https://vk.com/videos-387766?z=video-387766_456242764%2Fpl_-387766_-2',
  236. 'md5': '90d22d051fccbbe9becfccc615be6791',
  237. 'info_dict': {
  238. 'id': '456242764',
  239. 'ext': 'mp4',
  240. 'title': 'ИгроМир 2016 — день 1',
  241. 'uploader': 'Игромания',
  242. 'duration': 5239,
  243. 'view_count': int,
  244. },
  245. },
  246. {
  247. # live stream, hls and rtmp links, most likely already finished live
  248. # stream by the time you are reading this comment
  249. 'url': 'https://vk.com/video-140332_456239111',
  250. 'only_matching': True,
  251. },
  252. {
  253. # removed video, just testing that we match the pattern
  254. 'url': 'http://vk.com/feed?z=video-43215063_166094326%2Fbb50cacd3177146d7a',
  255. 'only_matching': True,
  256. },
  257. {
  258. # age restricted video, requires vk account credentials
  259. 'url': 'https://vk.com/video205387401_164765225',
  260. 'only_matching': True,
  261. },
  262. {
  263. # pladform embed
  264. 'url': 'https://vk.com/video-76116461_171554880',
  265. 'only_matching': True,
  266. },
  267. {
  268. 'url': 'http://new.vk.com/video205387401_165548505',
  269. 'only_matching': True,
  270. },
  271. {
  272. # This video is no longer available, because its author has been blocked.
  273. 'url': 'https://vk.com/video-10639516_456240611',
  274. 'only_matching': True,
  275. }
  276. ]
  277. def _real_extract(self, url):
  278. mobj = re.match(self._VALID_URL, url)
  279. video_id = mobj.group('videoid')
  280. if video_id:
  281. info_url = 'https://vk.com/al_video.php?act=show&al=1&module=video&video=%s' % video_id
  282. # Some videos (removed?) can only be downloaded with list id specified
  283. list_id = mobj.group('list_id')
  284. if list_id:
  285. info_url += '&list=%s' % list_id
  286. else:
  287. info_url = 'http://vk.com/video_ext.php?' + mobj.group('embed_query')
  288. video_id = '%s_%s' % (mobj.group('oid'), mobj.group('id'))
  289. info_page = self._download_webpage(info_url, video_id)
  290. error_message = self._html_search_regex(
  291. [r'(?s)<!><div[^>]+class="video_layer_message"[^>]*>(.+?)</div>',
  292. r'(?s)<div[^>]+id="video_ext_msg"[^>]*>(.+?)</div>'],
  293. info_page, 'error message', default=None)
  294. if error_message:
  295. raise ExtractorError(error_message, expected=True)
  296. if re.search(r'<!>/login\.php\?.*\bact=security_check', info_page):
  297. raise ExtractorError(
  298. 'You are trying to log in from an unusual location. You should confirm ownership at vk.com to log in with this IP.',
  299. expected=True)
  300. ERRORS = {
  301. r'>Видеозапись .*? была изъята из публичного доступа в связи с обращением правообладателя.<':
  302. 'Video %s has been removed from public access due to rightholder complaint.',
  303. r'<!>Please log in or <':
  304. 'Video %s is only available for registered users, '
  305. 'use --username and --password options to provide account credentials.',
  306. r'<!>Unknown error':
  307. 'Video %s does not exist.',
  308. r'<!>Видео временно недоступно':
  309. 'Video %s is temporarily unavailable.',
  310. r'<!>Access denied':
  311. 'Access denied to video %s.',
  312. r'<!>Видеозапись недоступна, так как её автор был заблокирован.':
  313. 'Video %s is no longer available, because its author has been blocked.',
  314. r'<!>This video is no longer available, because its author has been blocked.':
  315. 'Video %s is no longer available, because its author has been blocked.',
  316. }
  317. for error_re, error_msg in ERRORS.items():
  318. if re.search(error_re, info_page):
  319. raise ExtractorError(error_msg % video_id, expected=True)
  320. youtube_url = self._search_regex(
  321. r'<iframe[^>]+src="((?:https?:)?//www.youtube.com/embed/[^"]+)"',
  322. info_page, 'youtube iframe', default=None)
  323. if youtube_url:
  324. return self.url_result(youtube_url, 'Youtube')
  325. vimeo_url = VimeoIE._extract_url(url, info_page)
  326. if vimeo_url is not None:
  327. return self.url_result(vimeo_url)
  328. pladform_url = PladformIE._extract_url(info_page)
  329. if pladform_url:
  330. return self.url_result(pladform_url)
  331. m_rutube = re.search(
  332. r'\ssrc="((?:https?:)?//rutube\.ru\\?/(?:video|play)\\?/embed(?:.*?))\\?"', info_page)
  333. if m_rutube is not None:
  334. rutube_url = self._proto_relative_url(
  335. m_rutube.group(1).replace('\\', ''))
  336. return self.url_result(rutube_url)
  337. dailymotion_urls = DailymotionIE._extract_urls(info_page)
  338. if dailymotion_urls:
  339. return self.url_result(dailymotion_urls[0], DailymotionIE.ie_key())
  340. m_opts = re.search(r'(?s)var\s+opts\s*=\s*({.+?});', info_page)
  341. if m_opts:
  342. m_opts_url = re.search(r"url\s*:\s*'((?!/\b)[^']+)", m_opts.group(1))
  343. if m_opts_url:
  344. opts_url = m_opts_url.group(1)
  345. if opts_url.startswith('//'):
  346. opts_url = 'http:' + opts_url
  347. return self.url_result(opts_url)
  348. # vars does not look to be served anymore since 24.10.2016
  349. data = self._parse_json(
  350. self._search_regex(
  351. r'var\s+vars\s*=\s*({.+?});', info_page, 'vars', default='{}'),
  352. video_id, fatal=False)
  353. # <!json> is served instead
  354. if not data:
  355. data = self._parse_json(
  356. self._search_regex(
  357. r'<!json>\s*({.+?})\s*<!>', info_page, 'json', default='{}'),
  358. video_id)
  359. if data:
  360. data = data['player']['params'][0]
  361. if not data:
  362. data = self._parse_json(
  363. self._search_regex(
  364. r'var\s+playerParams\s*=\s*({.+?})\s*;\s*\n', info_page,
  365. 'player params'),
  366. video_id)['params'][0]
  367. title = unescapeHTML(data['md_title'])
  368. # 2 = live
  369. # 3 = post live (finished live)
  370. is_live = data.get('live') == 2
  371. if is_live:
  372. title = self._live_title(title)
  373. timestamp = unified_timestamp(self._html_search_regex(
  374. r'class=["\']mv_info_date[^>]+>([^<]+)(?:<|from)', info_page,
  375. 'upload date', fatal=False))
  376. view_count = str_to_int(self._search_regex(
  377. r'class=["\']mv_views_count[^>]+>\s*([\d,.]+)',
  378. info_page, 'view count', fatal=False))
  379. formats = []
  380. for format_id, format_url in data.items():
  381. if not isinstance(format_url, compat_str) or not format_url.startswith(('http', '//', 'rtmp')):
  382. continue
  383. if (format_id.startswith(('url', 'cache')) or
  384. format_id in ('extra_data', 'live_mp4', 'postlive_mp4')):
  385. height = int_or_none(self._search_regex(
  386. r'^(?:url|cache)(\d+)', format_id, 'height', default=None))
  387. formats.append({
  388. 'format_id': format_id,
  389. 'url': format_url,
  390. 'height': height,
  391. })
  392. elif format_id == 'hls':
  393. formats.extend(self._extract_m3u8_formats(
  394. format_url, video_id, 'mp4',
  395. entry_protocol='m3u8' if is_live else 'm3u8_native',
  396. m3u8_id=format_id, fatal=False, live=is_live))
  397. elif format_id == 'rtmp':
  398. formats.append({
  399. 'format_id': format_id,
  400. 'url': format_url,
  401. 'ext': 'flv',
  402. })
  403. self._sort_formats(formats)
  404. return {
  405. 'id': compat_str(data.get('vid') or video_id),
  406. 'formats': formats,
  407. 'title': title,
  408. 'thumbnail': data.get('jpg'),
  409. 'uploader': data.get('md_author'),
  410. 'duration': data.get('duration'),
  411. 'timestamp': timestamp,
  412. 'view_count': view_count,
  413. 'is_live': is_live,
  414. }
  415. class VKUserVideosIE(VKBaseIE):
  416. IE_NAME = 'vk:uservideos'
  417. IE_DESC = "VK - User's Videos"
  418. _VALID_URL = r'https?://(?:(?:m|new)\.)?vk\.com/videos(?P<id>-?[0-9]+)(?!\?.*\bz=video)(?:[/?#&]|$)'
  419. _TEMPLATE_URL = 'https://vk.com/videos'
  420. _TESTS = [{
  421. 'url': 'http://vk.com/videos205387401',
  422. 'info_dict': {
  423. 'id': '205387401',
  424. 'title': "Tom Cruise's Videos",
  425. },
  426. 'playlist_mincount': 4,
  427. }, {
  428. 'url': 'http://vk.com/videos-77521',
  429. 'only_matching': True,
  430. }, {
  431. 'url': 'http://vk.com/videos-97664626?section=all',
  432. 'only_matching': True,
  433. }, {
  434. 'url': 'http://m.vk.com/videos205387401',
  435. 'only_matching': True,
  436. }, {
  437. 'url': 'http://new.vk.com/videos205387401',
  438. 'only_matching': True,
  439. }]
  440. def _real_extract(self, url):
  441. page_id = self._match_id(url)
  442. webpage = self._download_webpage(url, page_id)
  443. entries = [
  444. self.url_result(
  445. 'http://vk.com/video' + video_id, 'VK', video_id=video_id)
  446. for video_id in orderedSet(re.findall(r'href="/video(-?[0-9_]+)"', webpage))]
  447. title = unescapeHTML(self._search_regex(
  448. r'<title>\s*([^<]+?)\s+\|\s+\d+\s+videos',
  449. webpage, 'title', default=page_id))
  450. return self.playlist_result(entries, page_id, title)
  451. class VKWallPostIE(VKBaseIE):
  452. IE_NAME = 'vk:wallpost'
  453. _VALID_URL = r'https?://(?:(?:(?:(?:m|new)\.)?vk\.com/(?:[^?]+\?.*\bw=)?wall(?P<id>-?\d+_\d+)))'
  454. _TESTS = [{
  455. # public page URL, audio playlist
  456. 'url': 'https://vk.com/bs.official?w=wall-23538238_35',
  457. 'info_dict': {
  458. 'id': '23538238_35',
  459. 'title': 'Black Shadow - Wall post 23538238_35',
  460. 'description': 'md5:3f84b9c4f9ef499731cf1ced9998cc0c',
  461. },
  462. 'playlist': [{
  463. 'md5': '5ba93864ec5b85f7ce19a9af4af080f6',
  464. 'info_dict': {
  465. 'id': '135220665_111806521',
  466. 'ext': 'mp3',
  467. 'title': 'Black Shadow - Слепое Верование',
  468. 'duration': 370,
  469. 'uploader': 'Black Shadow',
  470. 'artist': 'Black Shadow',
  471. 'track': 'Слепое Верование',
  472. },
  473. }, {
  474. 'md5': '4cc7e804579122b17ea95af7834c9233',
  475. 'info_dict': {
  476. 'id': '135220665_111802303',
  477. 'ext': 'mp3',
  478. 'title': 'Black Shadow - Война - Негасимое Бездны Пламя!',
  479. 'duration': 423,
  480. 'uploader': 'Black Shadow',
  481. 'artist': 'Black Shadow',
  482. 'track': 'Война - Негасимое Бездны Пламя!',
  483. },
  484. 'params': {
  485. 'skip_download': True,
  486. },
  487. }],
  488. 'params': {
  489. 'usenetrc': True,
  490. },
  491. 'skip': 'Requires vk account credentials',
  492. }, {
  493. # single YouTube embed, no leading -
  494. 'url': 'https://vk.com/wall85155021_6319',
  495. 'info_dict': {
  496. 'id': '85155021_6319',
  497. 'title': 'Sergey Gorbunov - Wall post 85155021_6319',
  498. },
  499. 'playlist_count': 1,
  500. 'params': {
  501. 'usenetrc': True,
  502. },
  503. 'skip': 'Requires vk account credentials',
  504. }, {
  505. # wall page URL
  506. 'url': 'https://vk.com/wall-23538238_35',
  507. 'only_matching': True,
  508. }, {
  509. # mobile wall page URL
  510. 'url': 'https://m.vk.com/wall-23538238_35',
  511. 'only_matching': True,
  512. }]
  513. def _real_extract(self, url):
  514. post_id = self._match_id(url)
  515. wall_url = 'https://vk.com/wall%s' % post_id
  516. post_id = remove_start(post_id, '-')
  517. webpage = self._download_webpage(wall_url, post_id)
  518. error = self._html_search_regex(
  519. r'>Error</div>\s*<div[^>]+class=["\']body["\'][^>]*>([^<]+)',
  520. webpage, 'error', default=None)
  521. if error:
  522. raise ExtractorError('VK said: %s' % error, expected=True)
  523. description = clean_html(get_element_by_class('wall_post_text', webpage))
  524. uploader = clean_html(get_element_by_class('author', webpage))
  525. thumbnail = self._og_search_thumbnail(webpage)
  526. entries = []
  527. audio_ids = re.findall(r'data-full-id=["\'](\d+_\d+)', webpage)
  528. if audio_ids:
  529. al_audio = self._download_webpage(
  530. 'https://vk.com/al_audio.php', post_id,
  531. note='Downloading audio info', fatal=False,
  532. data=urlencode_postdata({
  533. 'act': 'reload_audio',
  534. 'al': '1',
  535. 'ids': ','.join(audio_ids)
  536. }))
  537. if al_audio:
  538. Audio = collections.namedtuple(
  539. 'Audio', ['id', 'user_id', 'url', 'track', 'artist', 'duration'])
  540. audios = self._parse_json(
  541. self._search_regex(
  542. r'<!json>(.+?)<!>', al_audio, 'audios', default='[]'),
  543. post_id, fatal=False, transform_source=unescapeHTML)
  544. if isinstance(audios, list):
  545. for audio in audios:
  546. a = Audio._make(audio[:6])
  547. entries.append({
  548. 'id': '%s_%s' % (a.user_id, a.id),
  549. 'url': a.url,
  550. 'title': '%s - %s' % (a.artist, a.track) if a.artist and a.track else a.id,
  551. 'thumbnail': thumbnail,
  552. 'duration': a.duration,
  553. 'uploader': uploader,
  554. 'artist': a.artist,
  555. 'track': a.track,
  556. })
  557. for video in re.finditer(
  558. r'<a[^>]+href=(["\'])(?P<url>/video(?:-?[\d_]+).*?)\1', webpage):
  559. entries.append(self.url_result(
  560. compat_urlparse.urljoin(url, video.group('url')), VKIE.ie_key()))
  561. title = 'Wall post %s' % post_id
  562. return self.playlist_result(
  563. orderedSet(entries), post_id,
  564. '%s - %s' % (uploader, title) if uploader else title,
  565. description)