commit: fe458b65965e5a847a24d00138b723ce67b274e2
parent 21ac1a8ac3f2a3c301ad8c08730166a8fd82c287
Author: Sergey M․ <dstftw@gmail.com>
Date: Sat, 11 Jun 2016 05:57:27 +0700
[limelight] Extract ttml subtitles (Closes #9739)
Diffstat:
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/youtube_dl/extractor/limelight.py b/youtube_dl/extractor/limelight.py
@@ -102,9 +102,15 @@ class LimelightBaseIE(InfoExtractor):
lang = caption.get('language_code')
subtitles_url = caption.get('url')
if lang and subtitles_url:
- subtitles[lang] = [{
+ subtitles.setdefault(lang, []).append({
'url': subtitles_url,
- }]
+ })
+ closed_captions_url = properties.get('closed_captions_url')
+ if closed_captions_url:
+ subtitles.setdefault('en', []).append({
+ 'url': closed_captions_url,
+ 'ext': 'ttml',
+ })
return {
'id': video_id,