0
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-11-23 02:25:11 +00:00

[youtube] fix subtitle extraction(fixes #8415)

This commit is contained in:
remitamine 2016-02-04 08:28:37 +01:00
parent eadc3ccd50
commit 09be85b8dd

View file

@ -918,7 +918,7 @@ def _get_subtitles(self, video_id, webpage):
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,