mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 04:29:44 +01:00
[zype] Extract subtitles from the m3u8 manifest (#948)
Closes #929 Authored by: fstirlitz
This commit is contained in:
parent
81a136b80f
commit
1c5ce74c04
@ -56,6 +56,8 @@ class ZypeIE(InfoExtractor):
|
||||
video = response['video']
|
||||
title = video['title']
|
||||
|
||||
subtitles = {}
|
||||
|
||||
if isinstance(body, dict):
|
||||
formats = []
|
||||
for output in body.get('outputs', []):
|
||||
@ -64,7 +66,7 @@ class ZypeIE(InfoExtractor):
|
||||
continue
|
||||
name = output.get('name')
|
||||
if name == 'm3u8':
|
||||
formats = self._extract_m3u8_formats(
|
||||
formats, subtitles = self._extract_m3u8_formats_and_subtitles(
|
||||
output_url, video_id, 'mp4',
|
||||
'm3u8_native', m3u8_id='hls', fatal=False)
|
||||
else:
|
||||
@ -97,7 +99,7 @@ class ZypeIE(InfoExtractor):
|
||||
|
||||
if get_attr('integration') == 'verizon-media':
|
||||
m3u8_url = 'https://content.uplynk.com/%s.m3u8' % get_attr('id')
|
||||
formats = self._extract_m3u8_formats(
|
||||
formats, subtitles = self._extract_m3u8_formats_and_subtitles(
|
||||
m3u8_url, video_id, 'mp4', 'm3u8_native', m3u8_id='hls')
|
||||
text_tracks = self._search_regex(
|
||||
r'textTracks\s*:\s*(\[[^]]+\])',
|
||||
@ -107,7 +109,6 @@ class ZypeIE(InfoExtractor):
|
||||
text_tracks, video_id, js_to_json, False)
|
||||
self._sort_formats(formats)
|
||||
|
||||
subtitles = {}
|
||||
if text_tracks:
|
||||
for text_track in text_tracks:
|
||||
tt_url = dict_get(text_track, ('file', 'src'))
|
||||
|
Loading…
Reference in New Issue
Block a user