Browse Source

[youtube] fix subtitle extraction(fixes #8415)

remitamine 9 years ago
parent
commit
09be85b8dd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/youtube.py

+ 1 - 1
youtube_dl/extractor/youtube.py

@@ -918,7 +918,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
             if lang in sub_lang_list:
             if lang in sub_lang_list:
                 continue
                 continue
             sub_formats = []
             sub_formats = []
-            for ext in ['sbv', 'vtt', 'srt']:
+            for ext in ['vtt', 'ttml']:
                 params = compat_urllib_parse.urlencode({
                 params = compat_urllib_parse.urlencode({
                     'lang': lang,
                     'lang': lang,
                     'v': video_id,
                     'v': video_id,