mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-04 17:34:32 +01:00
[Canvas] Add subtitles
This commit is contained in:
parent
8e0548e180
commit
8d3eeb36d7
@ -54,6 +54,15 @@ class CanvasIE(InfoExtractor):
|
||||
})
|
||||
self._sort_formats(formats)
|
||||
|
||||
subtitles = {}
|
||||
for target in data['subtitleUrls']:
|
||||
format_url, format_type = target.get('url'), target.get('type')
|
||||
if format_type == 'CLOSED':
|
||||
subtitles['nl'] = [{
|
||||
'ext': 'vtt',
|
||||
'url': format_url,
|
||||
}]
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
'display_id': display_id,
|
||||
@ -62,4 +71,5 @@ class CanvasIE(InfoExtractor):
|
||||
'formats': formats,
|
||||
'duration': float_or_none(data.get('duration'), 1000),
|
||||
'thumbnail': data.get('posterImageUrl'),
|
||||
'subtitles': subtitles,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user