From 702973cc625400f8a2fa37c773b5203fc3ec0730 Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Sun, 1 Feb 2026 01:18:19 +0000 Subject: [PATCH] chore: round seconds output during clip creation --- rewind/core.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rewind/core.py b/rewind/core.py index c7c442c..927f6ed 100644 --- a/rewind/core.py +++ b/rewind/core.py @@ -173,7 +173,8 @@ def _concat_ts_files(file_list: list[str], start_offset: float, end_offset: floa with tqdm( total=length, unit="s", - unit_scale=False, + unit_scale=True, + unit_divisor=60, desc="Processing", leave=True, ) as pbar: