logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 2fb35d1c28f6dcac4bf35cc533fbc1699983b740
parent 09be85b8dd987ff4c3b3161dc58c36959c33da5e
Author: remitamine <remitamine@gmail.com>
Date:   Thu,  4 Feb 2016 08:39:01 +0100

[youtube] fix subtitle order

Diffstat:

Myoutube_dl/extractor/youtube.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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 ['vtt', 'ttml']: + for ext in ['ttml', 'vtt']: params = compat_urllib_parse.urlencode({ 'lang': lang, 'v': video_id,