aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2019-11-18 12:51:25 +0100
committerRemita Amine <remitamine@gmail.com>2019-11-18 12:51:25 +0100
commit7e70620a342c57746812d4a8fae6f436bd90cf57 (patch)
tree8f3d5df693d0a384131f5d2f88e05b7c20c3b8fb
parent9e4e864639bf606a1931a684f130e219e869adfd (diff)
downloadyoutube-dl-7e70620a342c57746812d4a8fae6f436bd90cf57.tar.xz
[vk] fix wall audio thumbnails extraction(closes #23135)
-rw-r--r--youtube_dl/extractor/vk.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/youtube_dl/extractor/vk.py b/youtube_dl/extractor/vk.py
index 4c8ca4f41..195875938 100644
--- a/youtube_dl/extractor/vk.py
+++ b/youtube_dl/extractor/vk.py
@@ -634,14 +634,15 @@ class VKWallPostIE(VKBaseIE):
if not a.url:
continue
title = unescapeHTML(a.title)
+ performer = unescapeHTML(a.performer)
entries.append({
'id': '%s_%s' % (a.owner_id, a.id),
'url': self._unmask_url(a.url, a.ads['vk_id']),
- 'title': '%s - %s' % (a.performer, title) if a.performer else title,
- 'thumbnail': a.cover_url.split(',') if a.cover_url else None,
- 'duration': a.duration,
+ 'title': '%s - %s' % (performer, title) if performer else title,
+ 'thumbnails': [{'url': c_url} for c_url in a.cover_url.split(',')] if a.cover_url else None,
+ 'duration': int_or_none(a.duration),
'uploader': uploader,
- 'artist': a.performer,
+ 'artist': performer,
'track': title,
'ext': 'mp4',
'protocol': 'm3u8',