[ie/AbemaTV] Extract subtitles (#16502)

Closes #16501
Authored by: garret1317
This commit is contained in:
garret1317 2026-06-09 22:03:41 +01:00 committed by GitHub
parent 1a1481e89b
commit 519a662aa2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -407,7 +407,7 @@ class AbemaTVIE(AbemaTVBaseIE):
if is_live: if is_live:
self.report_warning("This is a livestream; yt-dlp doesn't support downloading natively, but FFmpeg cannot handle m3u8 manifests from AbemaTV") self.report_warning("This is a livestream; yt-dlp doesn't support downloading natively, but FFmpeg cannot handle m3u8 manifests from AbemaTV")
self.report_warning('Please consider using Streamlink to download these streams (https://github.com/streamlink/streamlink)') self.report_warning('Please consider using Streamlink to download these streams (https://github.com/streamlink/streamlink)')
formats = self._extract_m3u8_formats( formats, subtitles = self._extract_m3u8_formats_and_subtitles(
m3u8_url, video_id, ext='mp4', live=is_live) m3u8_url, video_id, ext='mp4', live=is_live)
info.update({ info.update({
@ -415,6 +415,7 @@ class AbemaTVIE(AbemaTVBaseIE):
'title': title, 'title': title,
'description': description, 'description': description,
'formats': formats, 'formats': formats,
'subtitles': subtitles,
'is_live': is_live, 'is_live': is_live,
'availability': availability, 'availability': availability,
}) })