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