mirror of
https://github.com/l1ving/youtube-dl
synced 2025-03-11 03:47:15 +08:00
Merge pull request #167 from ytdl-org/master
[pull] master from ytdl-org:master
This commit is contained in:
commit
3737bc4d4d
@ -635,14 +635,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',
|
||||
|
Loading…
x
Reference in New Issue
Block a user