浏览代码

Merge pull request #5076 from Ftornik/Lynda-subtitles-hotfix

[lynda] Fixed subtitles broken file
Sergey M. 10 年之前
父节点
当前提交
5b2949ee0b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      youtube_dl/extractor/lynda.py

+ 1 - 1
youtube_dl/extractor/lynda.py

@@ -155,7 +155,7 @@ class LyndaIE(InfoExtractor):
                 continue
             appear_time = m_current.group('timecode')
             disappear_time = m_next.group('timecode')
-            text = seq_current['Caption']
+            text = seq_current['Caption'].strip()
             srt += '%s\r\n%s --> %s\r\n%s' % (str(pos), appear_time, disappear_time, text)
         if srt:
             return srt