[rumble] Extract subtitles (#3823)

Closes #3132
Authored by: fstirlitz
pull/3836/head
Felix S 2 years ago committed by GitHub
parent c487cf0010
commit 92922fe7f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -77,12 +77,20 @@ class RumbleEmbedIE(InfoExtractor):
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…
Cancel
Save