From 09be85b8dd987ff4c3b3161dc58c36959c33da5e Mon Sep 17 00:00:00 2001 From: remitamine Date: Thu, 4 Feb 2016 08:28:37 +0100 Subject: [PATCH] [youtube] fix subtitle extraction(fixes #8415) --- youtube_dl/extractor/youtube.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index a7f8c968e..1fef4cfd4 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -918,7 +918,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor): if lang in sub_lang_list: continue sub_formats = [] - for ext in ['sbv', 'vtt', 'srt']: + for ext in ['vtt', 'ttml']: params = compat_urllib_parse.urlencode({ 'lang': lang, 'v': video_id,