mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
parent
c487cf0010
commit
92922fe7f9
@ -77,12 +77,20 @@ def _real_extract(self, url):
|
||||
formats.append(f)
|
||||
self._sort_formats(formats)
|
||||
|
||||
subtitles = {
|
||||
lang: [{
|
||||
'url': sub_info['path'],
|
||||
'name': sub_info.get('language') or '',
|
||||
}] for lang, sub_info in (video.get('cc') or {}).items() if sub_info.get('path')
|
||||
}
|
||||
|
||||
author = video.get('author') or {}
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
'title': title,
|
||||
'formats': formats,
|
||||
'subtitles': subtitles,
|
||||
'thumbnail': video.get('i'),
|
||||
'timestamp': parse_iso8601(video.get('pubDate')),
|
||||
'channel': author.get('name'),
|
||||
|
Loading…
Reference in New Issue
Block a user