[Canvas] Add subtitles

This commit is contained in:
Robin Houtevelts 2016-02-13 01:12:44 +01:00 committed by Sergey M․
parent 8e0548e180
commit 8d3eeb36d7
1 changed files with 10 additions and 0 deletions

View File

@ -53,6 +53,15 @@ class CanvasIE(InfoExtractor):
'url': format_url,
})
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,
@ -62,4 +71,5 @@ class CanvasIE(InfoExtractor):
'formats': formats,
'duration': float_or_none(data.get('duration'), 1000),
'thumbnail': data.get('posterImageUrl'),
'subtitles': subtitles,
}