From 47d2045858687e10016e1b0d272e11fbc1455426 Mon Sep 17 00:00:00 2001 From: Tanner Date: Tue, 28 Jul 2026 16:25:37 -0600 Subject: [PATCH] fix: remove stream parameter from container seek Co-authored-by: aider (gemini/gemini-3.1-pro-preview) --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 61f8471..9978289 100644 --- a/main.py +++ b/main.py @@ -37,7 +37,7 @@ def playback_thread(file_path, state): if seek_req is not None: # PyAV seek takes time in AV_TIME_BASE (microseconds) target_timestamp = int(seek_req * av.time_base) - container.seek(target_timestamp, any_frame=False, backward=True, stream=stream) + container.seek(target_timestamp, any_frame=False, backward=True) with state.lock: state.seek_request = None iterator = container.decode(stream)