logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 75ba0efb52c898601ef9febcba3e7a84ff2f311e
parent f0c6c2bce29281d37d2bbd589143b35323e38e3d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed,  3 Jan 2018 16:41:28 +0700

[lynda] Skip invalid subtitles (closes #15159)

Diffstat:

Myoutube_dl/extractor/lynda.py5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/lynda.py b/youtube_dl/extractor/lynda.py @@ -244,8 +244,9 @@ class LyndaIE(LyndaBaseIE): def _get_subtitles(self, video_id): url = 'https://www.lynda.com/ajax/player?videoId=%s&type=transcript' % video_id subs = self._download_json(url, None, False) - if subs: - return {'en': [{'ext': 'srt', 'data': self._fix_subtitles(subs)}]} + fixed_subs = self._fix_subtitles(subs) + if fixed_subs: + return {'en': [{'ext': 'srt', 'data': fixed_subs}]} else: return {}