mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
[pbs] extract srt and vtt subtitles
This commit is contained in:
parent
7691184a31
commit
e0e9bbb0e9
|
@ -537,6 +537,19 @@ class PBSIE(InfoExtractor):
|
||||||
'ext': 'ttml',
|
'ext': 'ttml',
|
||||||
'url': closed_captions_url,
|
'url': closed_captions_url,
|
||||||
}]
|
}]
|
||||||
|
mobj = re.search(r'/(\d+)_Encoded\.dfxp', closed_captions_url)
|
||||||
|
if mobj:
|
||||||
|
ttml_caption_suffix, ttml_caption_id = mobj.group(0, 1)
|
||||||
|
ttml_caption_id = int(ttml_caption_id)
|
||||||
|
subtitles['en'].extend([{
|
||||||
|
'url': closed_captions_url.replace(
|
||||||
|
ttml_caption_suffix, '/%d_Encoded.srt' % (ttml_caption_id + 1)),
|
||||||
|
'ext': 'srt',
|
||||||
|
}, {
|
||||||
|
'url': closed_captions_url.replace(
|
||||||
|
ttml_caption_suffix, '/%d_Encoded.vtt' % (ttml_caption_id + 2)),
|
||||||
|
'ext': 'vtt',
|
||||||
|
}])
|
||||||
|
|
||||||
# info['title'] is often incomplete (e.g. 'Full Episode', 'Episode 5', etc)
|
# info['title'] is often incomplete (e.g. 'Full Episode', 'Episode 5', etc)
|
||||||
# Try turning it to 'program - title' naming scheme if possible
|
# Try turning it to 'program - title' naming scheme if possible
|
||||||
|
|
Loading…
Reference in a new issue