mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[kanalplay] Extract subtitles
This commit is contained in:
parent
4a34f69ea6
commit
3f4327520c
1 changed files with 21 additions and 0 deletions
|
@ -31,6 +31,22 @@ class KanalPlayIE(InfoExtractor):
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
def _fix_subtitles(self, subs):
|
||||||
|
return '\r\n\r\n'.join(
|
||||||
|
'%s\r\n%s --> %s\r\n%s'
|
||||||
|
% (
|
||||||
|
num,
|
||||||
|
self._subtitles_timecode(item['startMillis'] / 1000.0),
|
||||||
|
self._subtitles_timecode(item['endMillis'] / 1000.0),
|
||||||
|
item['text'],
|
||||||
|
) for num, item in enumerate(subs, 1))
|
||||||
|
|
||||||
|
def _get_subtitles(self, channel_id, video_id):
|
||||||
|
subs = self._download_json(
|
||||||
|
'http://www.kanal%splay.se/api/subtitles/%s' % (channel_id, video_id),
|
||||||
|
video_id, 'Downloading subtitles JSON', fatal=False)
|
||||||
|
return {'se': [{'ext': 'srt', 'data': self._fix_subtitles(subs)}]} if subs else {}
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
video_id = mobj.group('id')
|
video_id = mobj.group('id')
|
||||||
|
@ -62,6 +78,10 @@ def _real_extract(self, url):
|
||||||
} for stream in video['streams']]
|
} for stream in video['streams']]
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
|
subtitles = {}
|
||||||
|
if video.get('hasSubtitle'):
|
||||||
|
subtitles = self.extract_subtitles(channel_id, video_id)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': title,
|
'title': title,
|
||||||
|
@ -69,4 +89,5 @@ def _real_extract(self, url):
|
||||||
'thumbnail': thumbnail,
|
'thumbnail': thumbnail,
|
||||||
'duration': duration,
|
'duration': duration,
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
|
'subtitles': subtitles,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue