chore: remove LLM poop
This commit is contained in:
parent
465cf1171e
commit
187f508f7a
1 changed files with 1 additions and 2 deletions
|
@ -171,9 +171,8 @@ class SRTMerger:
|
|||
self.output.extend(source_list[start_idx:end_idx + 1])
|
||||
|
||||
def handle_map(self, text_source, text_start, time_start, count):
|
||||
time_source = text_source
|
||||
text_list = self.srt1 if text_source == 1 else self.srt2
|
||||
time_list = self.srt2 if time_source == 1 else self.srt1
|
||||
time_list = self.srt2 if text_source == 1 else self.srt1
|
||||
text_start_idx = text_start - 1
|
||||
time_start_idx = time_start - 1
|
||||
if (text_start_idx < 0 or text_start_idx + count > len(text_list) or
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue