Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

652 řádky
24KB

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