chore: remove LLM poop

This commit is contained in:
Emmanuel BENOîT 2025-07-06 12:25:59 +02:00
parent 465cf1171e
commit 187f508f7a
Signed by: Emmanuel BENOîT
SSH key fingerprint: SHA256:l7PFUUF5TCDsvYeQC9OnTNz08dFY7Fvf4Hv3neIqYpg

View file

@ -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