mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	[LinkedInLearning] Fix newline bug in subtitles (#1104)
Authored by: Ashish0804
This commit is contained in:
		| @@ -94,9 +94,9 @@ class LinkedInLearningIE(LinkedInLearningBaseIE): | ||||
|         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): | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Ashish Gupta
					Ashish Gupta