mirror of https://github.com/yt-dlp/yt-dlp.git
[extractor/AdultSwim] Extract subtitles from m3u8 (#7421)
Authored by: nnoboa Closes #6191
This commit is contained in:
parent
f0a1ff1181
commit
5e16cf92eb
|
@ -170,8 +170,10 @@ class AdultSwimIE(TurnerBaseIE):
|
||||||
continue
|
continue
|
||||||
ext = determine_ext(asset_url, mimetype2ext(asset.get('mime_type')))
|
ext = determine_ext(asset_url, mimetype2ext(asset.get('mime_type')))
|
||||||
if ext == 'm3u8':
|
if ext == 'm3u8':
|
||||||
info['formats'].extend(self._extract_m3u8_formats(
|
fmts, subs = self._extract_m3u8_formats_and_subtitles(
|
||||||
asset_url, video_id, 'mp4', m3u8_id='hls', fatal=False))
|
asset_url, video_id, 'mp4', m3u8_id='hls', fatal=False)
|
||||||
|
info['formats'].extend(fmts)
|
||||||
|
self._merge_subtitles(subs, target=info['subtitles'])
|
||||||
elif ext == 'f4m':
|
elif ext == 'f4m':
|
||||||
continue
|
continue
|
||||||
# info['formats'].extend(self._extract_f4m_formats(
|
# info['formats'].extend(self._extract_f4m_formats(
|
||||||
|
|
Loading…
Reference in New Issue