From 1c058e8f0b2faf27c25526670547e96e1269e1e9 Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Mon, 17 Jun 2024 18:27:27 +0200 Subject: [PATCH] fix: Fix length --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 953c55e..47caf53 100644 --- a/main.py +++ b/main.py @@ -33,7 +33,7 @@ def main() -> None: # Iterate over seconds - for i in range(0, int(metadata.nframes / 2), metadata.framerate): + for i in range(0, metadata.nframes, metadata.framerate): second = frames[i:i + metadata.framerate] # Split the second into parts