[vk] Add subtitles (#1480)

Authored by: kaz-us
This commit is contained in:
kaz-us 2021-10-31 09:13:49 +04:00 committed by GitHub
parent b2f25dc242
commit 5b6cb56207
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -471,6 +471,13 @@ def _real_extract(self, url):
})
self._sort_formats(formats)
subtitles = {}
for sub in data.get('subs') or {}:
subtitles.setdefault(sub.get('lang', 'en'), []).append({
'ext': sub.get('title', '.srt').split('.')[-1],
'url': url_or_none(sub.get('url')),
})
return {
'id': video_id,
'formats': formats,
@ -484,6 +491,7 @@ def _real_extract(self, url):
'like_count': int_or_none(mv_data.get('likes')),
'comment_count': int_or_none(mv_data.get('commcount')),
'is_live': is_live,
'subtitles': subtitles,
}