Browse Source

[lynda] Skip invalid subtitles (closes #15159)

master-ytdl-org
Sergey M․ 7 years ago
parent
commit
75ba0efb52
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      youtube_dl/extractor/lynda.py

+ 3
- 2
youtube_dl/extractor/lynda.py View File

@ -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 {}


Loading…
Cancel
Save