Browse Source

[youtube] fix subtitle extraction(fixes #8415)

totalwebcasting
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 View File

@ -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,


Loading…
Cancel
Save