From d81c839284d38387a0d93044e3291e6d4ceffe80 Mon Sep 17 00:00:00 2001 From: j Date: Wed, 14 Jan 2026 02:02:31 +0000 Subject: [PATCH] use .3 for timecodes --- oxtimelines/timeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oxtimelines/timeline.py b/oxtimelines/timeline.py index 0493b8d..060a89c 100644 --- a/oxtimelines/timeline.py +++ b/oxtimelines/timeline.py @@ -533,7 +533,7 @@ class Timelines(): self.cuts = filter(lambda x: x not in [0, self.frame_n] + self.no_cuts, self.cuts) with open(self.cuts_path, 'w') as f: # avoid float rounding artefacts - f.write('[' + ', '.join(map(lambda x: '%.2f' % (x / FPS), self.cuts)) + ']') + f.write('[' + ', '.join(map(lambda x: '%.3f' % (x / FPS), self.cuts)) + ']') if self.render_audio: self._render_audio(self.volume) if not self.render_video: