فهرست منبع

[lynda] Use 'lstrip' for the subtitles

The newlines at the end are important, they separate each piece of text.
Jaime Marquínez Ferrándiz 10 سال پیش
والد
کامیت
781a7ef60a
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'].strip()
+            text = seq_current['Caption'].lstrip()
             srt += '%s\r\n%s --> %s\r\n%s' % (str(pos), appear_time, disappear_time, text)
         if srt:
             return srt