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.

616 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. def _real_extract(self, url):
  273. mobj = re.match(self._VALID_URL, url)
  274. video_id = mobj.group('videoid')
  275. if video_id:
  276. info_url = 'https://vk.com/al_video.php?act=show&al=1&module=video&video=%s' % video_id
  277. # Some videos (removed?) can only be downloaded with list id specified
  278. list_id = mobj.group('list_id')
  279. if list_id:
  280. info_url += '&list=%s' % list_id
  281. else:
  282. info_url = 'http://vk.com/video_ext.php?' + mobj.group('embed_query')
  283. video_id = '%s_%s' % (mobj.group('oid'), mobj.group('id'))
  284. info_page = self._download_webpage(info_url, video_id)
  285. error_message = self._html_search_regex(
  286. [r'(?s)<!><div[^>]+class="video_layer_message"[^>]*>(.+?)</div>',
  287. r'(?s)<div[^>]+id="video_ext_msg"[^>]*>(.+?)</div>'],
  288. info_page, 'error message', default=None)
  289. if error_message:
  290. raise ExtractorError(error_message, expected=True)
  291. if re.search(r'<!>/login\.php\?.*\bact=security_check', info_page):
  292. raise ExtractorError(
  293. 'You are trying to log in from an unusual location. You should confirm ownership at vk.com to log in with this IP.',
  294. expected=True)
  295. ERRORS = {
  296. r'>Видеозапись .*? была изъята из публичного доступа в связи с обращением правообладателя.<':
  297. 'Video %s has been removed from public access due to rightholder complaint.',
  298. r'<!>Please log in or <':
  299. 'Video %s is only available for registered users, '
  300. 'use --username and --password options to provide account credentials.',
  301. r'<!>Unknown error':
  302. 'Video %s does not exist.',
  303. r'<!>Видео временно недоступно':
  304. 'Video %s is temporarily unavailable.',
  305. r'<!>Access denied':
  306. 'Access denied to video %s.',
  307. }
  308. for error_re, error_msg in ERRORS.items():
  309. if re.search(error_re, info_page):
  310. raise ExtractorError(error_msg % video_id, expected=True)
  311. youtube_url = self._search_regex(
  312. r'<iframe[^>]+src="((?:https?:)?//www.youtube.com/embed/[^"]+)"',
  313. info_page, 'youtube iframe', default=None)
  314. if youtube_url:
  315. return self.url_result(youtube_url, 'Youtube')
  316. vimeo_url = VimeoIE._extract_url(url, info_page)
  317. if vimeo_url is not None:
  318. return self.url_result(vimeo_url)
  319. pladform_url = PladformIE._extract_url(info_page)
  320. if pladform_url:
  321. return self.url_result(pladform_url)
  322. m_rutube = re.search(
  323. r'\ssrc="((?:https?:)?//rutube\.ru\\?/(?:video|play)\\?/embed(?:.*?))\\?"', info_page)
  324. if m_rutube is not None:
  325. rutube_url = self._proto_relative_url(
  326. m_rutube.group(1).replace('\\', ''))
  327. return self.url_result(rutube_url)
  328. dailymotion_urls = DailymotionIE._extract_urls(info_page)
  329. if dailymotion_urls:
  330. return self.url_result(dailymotion_urls[0], DailymotionIE.ie_key())
  331. m_opts = re.search(r'(?s)var\s+opts\s*=\s*({.+?});', info_page)
  332. if m_opts:
  333. m_opts_url = re.search(r"url\s*:\s*'((?!/\b)[^']+)", m_opts.group(1))
  334. if m_opts_url:
  335. opts_url = m_opts_url.group(1)
  336. if opts_url.startswith('//'):
  337. opts_url = 'http:' + opts_url
  338. return self.url_result(opts_url)
  339. # vars does not look to be served anymore since 24.10.2016
  340. data = self._parse_json(
  341. self._search_regex(
  342. r'var\s+vars\s*=\s*({.+?});', info_page, 'vars', default='{}'),
  343. video_id, fatal=False)
  344. # <!json> is served instead
  345. if not data:
  346. data = self._parse_json(
  347. self._search_regex(
  348. r'<!json>\s*({.+?})\s*<!>', info_page, 'json', default='{}'),
  349. video_id)
  350. if data:
  351. data = data['player']['params'][0]
  352. if not data:
  353. data = self._parse_json(
  354. self._search_regex(
  355. r'var\s+playerParams\s*=\s*({.+?})\s*;\s*\n', info_page,
  356. 'player params'),
  357. video_id)['params'][0]
  358. title = unescapeHTML(data['md_title'])
  359. # 2 = live
  360. # 3 = post live (finished live)
  361. is_live = data.get('live') == 2
  362. if is_live:
  363. title = self._live_title(title)
  364. timestamp = unified_timestamp(self._html_search_regex(
  365. r'class=["\']mv_info_date[^>]+>([^<]+)(?:<|from)', info_page,
  366. 'upload date', fatal=False))
  367. view_count = str_to_int(self._search_regex(
  368. r'class=["\']mv_views_count[^>]+>\s*([\d,.]+)',
  369. info_page, 'view count', fatal=False))
  370. formats = []
  371. for format_id, format_url in data.items():
  372. if not isinstance(format_url, compat_str) or not format_url.startswith(('http', '//', 'rtmp')):
  373. continue
  374. if (format_id.startswith(('url', 'cache')) or
  375. format_id in ('extra_data', 'live_mp4', 'postlive_mp4')):
  376. height = int_or_none(self._search_regex(
  377. r'^(?:url|cache)(\d+)', format_id, 'height', default=None))
  378. formats.append({
  379. 'format_id': format_id,
  380. 'url': format_url,
  381. 'height': height,
  382. })
  383. elif format_id == 'hls':
  384. formats.extend(self._extract_m3u8_formats(
  385. format_url, video_id, 'mp4',
  386. entry_protocol='m3u8' if is_live else 'm3u8_native',
  387. m3u8_id=format_id, fatal=False, live=is_live))
  388. elif format_id == 'rtmp':
  389. formats.append({
  390. 'format_id': format_id,
  391. 'url': format_url,
  392. 'ext': 'flv',
  393. })
  394. self._sort_formats(formats)
  395. return {
  396. 'id': compat_str(data.get('vid') or video_id),
  397. 'formats': formats,
  398. 'title': title,
  399. 'thumbnail': data.get('jpg'),
  400. 'uploader': data.get('md_author'),
  401. 'duration': data.get('duration'),
  402. 'timestamp': timestamp,
  403. 'view_count': view_count,
  404. 'is_live': is_live,
  405. }
  406. class VKUserVideosIE(VKBaseIE):
  407. IE_NAME = 'vk:uservideos'
  408. IE_DESC = "VK - User's Videos"
  409. _VALID_URL = r'https?://(?:(?:m|new)\.)?vk\.com/videos(?P<id>-?[0-9]+)(?!\?.*\bz=video)(?:[/?#&]|$)'
  410. _TEMPLATE_URL = 'https://vk.com/videos'
  411. _TESTS = [{
  412. 'url': 'http://vk.com/videos205387401',
  413. 'info_dict': {
  414. 'id': '205387401',
  415. 'title': "Tom Cruise's Videos",
  416. },
  417. 'playlist_mincount': 4,
  418. }, {
  419. 'url': 'http://vk.com/videos-77521',
  420. 'only_matching': True,
  421. }, {
  422. 'url': 'http://vk.com/videos-97664626?section=all',
  423. 'only_matching': True,
  424. }, {
  425. 'url': 'http://m.vk.com/videos205387401',
  426. 'only_matching': True,
  427. }, {
  428. 'url': 'http://new.vk.com/videos205387401',
  429. 'only_matching': True,
  430. }]
  431. def _real_extract(self, url):
  432. page_id = self._match_id(url)
  433. webpage = self._download_webpage(url, page_id)
  434. entries = [
  435. self.url_result(
  436. 'http://vk.com/video' + video_id, 'VK', video_id=video_id)
  437. for video_id in orderedSet(re.findall(r'href="/video(-?[0-9_]+)"', webpage))]
  438. title = unescapeHTML(self._search_regex(
  439. r'<title>\s*([^<]+?)\s+\|\s+\d+\s+videos',
  440. webpage, 'title', default=page_id))
  441. return self.playlist_result(entries, page_id, title)
  442. class VKWallPostIE(VKBaseIE):
  443. IE_NAME = 'vk:wallpost'
  444. _VALID_URL = r'https?://(?:(?:(?:(?:m|new)\.)?vk\.com/(?:[^?]+\?.*\bw=)?wall(?P<id>-?\d+_\d+)))'
  445. _TESTS = [{
  446. # public page URL, audio playlist
  447. 'url': 'https://vk.com/bs.official?w=wall-23538238_35',
  448. 'info_dict': {
  449. 'id': '23538238_35',
  450. 'title': 'Black Shadow - Wall post 23538238_35',
  451. 'description': 'md5:3f84b9c4f9ef499731cf1ced9998cc0c',
  452. },
  453. 'playlist': [{
  454. 'md5': '5ba93864ec5b85f7ce19a9af4af080f6',
  455. 'info_dict': {
  456. 'id': '135220665_111806521',
  457. 'ext': 'mp3',
  458. 'title': 'Black Shadow - Слепое Верование',
  459. 'duration': 370,
  460. 'uploader': 'Black Shadow',
  461. 'artist': 'Black Shadow',
  462. 'track': 'Слепое Верование',
  463. },
  464. }, {
  465. 'md5': '4cc7e804579122b17ea95af7834c9233',
  466. 'info_dict': {
  467. 'id': '135220665_111802303',
  468. 'ext': 'mp3',
  469. 'title': 'Black Shadow - Война - Негасимое Бездны Пламя!',
  470. 'duration': 423,
  471. 'uploader': 'Black Shadow',
  472. 'artist': 'Black Shadow',
  473. 'track': 'Война - Негасимое Бездны Пламя!',
  474. },
  475. 'params': {
  476. 'skip_download': True,
  477. },
  478. }],
  479. 'params': {
  480. 'usenetrc': True,
  481. },
  482. 'skip': 'Requires vk account credentials',
  483. }, {
  484. # single YouTube embed, no leading -
  485. 'url': 'https://vk.com/wall85155021_6319',
  486. 'info_dict': {
  487. 'id': '85155021_6319',
  488. 'title': 'Sergey Gorbunov - Wall post 85155021_6319',
  489. },
  490. 'playlist_count': 1,
  491. 'params': {
  492. 'usenetrc': True,
  493. },
  494. 'skip': 'Requires vk account credentials',
  495. }, {
  496. # wall page URL
  497. 'url': 'https://vk.com/wall-23538238_35',
  498. 'only_matching': True,
  499. }, {
  500. # mobile wall page URL
  501. 'url': 'https://m.vk.com/wall-23538238_35',
  502. 'only_matching': True,
  503. }]
  504. def _real_extract(self, url):
  505. post_id = self._match_id(url)
  506. wall_url = 'https://vk.com/wall%s' % post_id
  507. post_id = remove_start(post_id, '-')
  508. webpage = self._download_webpage(wall_url, post_id)
  509. error = self._html_search_regex(
  510. r'>Error</div>\s*<div[^>]+class=["\']body["\'][^>]*>([^<]+)',
  511. webpage, 'error', default=None)
  512. if error:
  513. raise ExtractorError('VK said: %s' % error, expected=True)
  514. description = clean_html(get_element_by_class('wall_post_text', webpage))
  515. uploader = clean_html(get_element_by_class('author', webpage))
  516. thumbnail = self._og_search_thumbnail(webpage)
  517. entries = []
  518. audio_ids = re.findall(r'data-full-id=["\'](\d+_\d+)', webpage)
  519. if audio_ids:
  520. al_audio = self._download_webpage(
  521. 'https://vk.com/al_audio.php', post_id,
  522. note='Downloading audio info', fatal=False,
  523. data=urlencode_postdata({
  524. 'act': 'reload_audio',
  525. 'al': '1',
  526. 'ids': ','.join(audio_ids)
  527. }))
  528. if al_audio:
  529. Audio = collections.namedtuple(
  530. 'Audio', ['id', 'user_id', 'url', 'track', 'artist', 'duration'])
  531. audios = self._parse_json(
  532. self._search_regex(
  533. r'<!json>(.+?)<!>', al_audio, 'audios', default='[]'),
  534. post_id, fatal=False, transform_source=unescapeHTML)
  535. if isinstance(audios, list):
  536. for audio in audios:
  537. a = Audio._make(audio[:6])
  538. entries.append({
  539. 'id': '%s_%s' % (a.user_id, a.id),
  540. 'url': a.url,
  541. 'title': '%s - %s' % (a.artist, a.track) if a.artist and a.track else a.id,
  542. 'thumbnail': thumbnail,
  543. 'duration': a.duration,
  544. 'uploader': uploader,
  545. 'artist': a.artist,
  546. 'track': a.track,
  547. })
  548. for video in re.finditer(
  549. r'<a[^>]+href=(["\'])(?P<url>/video(?:-?[\d_]+).*?)\1', webpage):
  550. entries.append(self.url_result(
  551. compat_urlparse.urljoin(url, video.group('url')), VKIE.ie_key()))
  552. title = 'Wall post %s' % post_id
  553. return self.playlist_result(
  554. orderedSet(entries), post_id,
  555. '%s - %s' % (uploader, title) if uploader else title,
  556. description)