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