Browse Source

[lynda] Fix download if subtitles were not requested

totalwebcasting
Philipp Hagemeister 11 years ago
parent
commit
7b09a4d847
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      youtube_dl/extractor/lynda.py

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

@ -68,6 +68,9 @@ class LyndaIE(SubtitlesInfoExtractor):
_TIMECODE_REGEX = r'\[(?P<timecode>\d+:\d+:\d+[\.,]\d+)\]'
def _fix_subtitles(self, subtitles):
if subtitles is None:
return subtitles # subtitles not requested
fixed_subtitles = {}
for k, v in subtitles.items():
subs = json.loads(v)


Loading…
Cancel
Save