diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-02-25 00:59:29 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-02-25 00:59:29 +0700 |
commit | f4b742727975c2b1660a196409c3f2818a309a2d (patch) | |
tree | 9ea29be924691c9822be46b97222a69b55ca8197 /youtube_dl | |
parent | 300148b48a524c6954ad1a6ae84c4ceab978a614 (diff) |
[extractor/common] Improve jwplayer subtitles extraction (closes #15695)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/common.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index ff62b5cf3..fcdd0fd14 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -2353,7 +2353,10 @@ class InfoExtractor(object): for track in tracks: if not isinstance(track, dict): continue - if track.get('kind') != 'captions': + track_kind = track.get('kind') + if not track_kind or not isinstance(track_kind, compat_str): + continue + if track_kind.lower() not in ('captions', 'subtitles'): continue track_url = urljoin(base_url, track.get('file')) if not track_url: |