mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[LinkedInLearning] Fix newline bug in subtitles (#1104)
Authored by: Ashish0804
This commit is contained in:
parent
250a938de8
commit
80c360d7aa
1 changed files with 3 additions and 3 deletions
|
@ -94,9 +94,9 @@ def json2srt(self, transcript_lines, duration=None):
|
|||
for line, (line_dict, next_dict) in enumerate(zip_longest(transcript_lines, transcript_lines[1:])):
|
||||
start_time, caption = line_dict['transcriptStartAt'] / 1000, line_dict['caption']
|
||||
end_time = next_dict['transcriptStartAt'] / 1000 if next_dict else duration or start_time + 1
|
||||
srt_data += '%d\n%s --> %s\n%s\n' % (line + 1, srt_subtitles_timecode(start_time),
|
||||
srt_subtitles_timecode(end_time),
|
||||
caption)
|
||||
srt_data += '%d\n%s --> %s\n%s\n\n' % (line + 1, srt_subtitles_timecode(start_time),
|
||||
srt_subtitles_timecode(end_time),
|
||||
caption)
|
||||
return srt_data
|
||||
|
||||
def _real_extract(self, url):
|
||||
|
|
Loading…
Reference in a new issue