From 953ec628a0250fa46bcd6a1d74ccea47b80a05b4 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Tue, 11 Aug 2026 05:32:27 +0000 Subject: [PATCH] Add -nostdin to ffmpeg preview conversions to suppress keyboard prompts --- cista/preview_worker.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cista/preview_worker.py b/cista/preview_worker.py index a642b5d..972ed48 100644 --- a/cista/preview_worker.py +++ b/cista/preview_worker.py @@ -218,6 +218,8 @@ def _image_via_ffmpeg(path: Path, maxsize: int, quality: int) -> bytes: "-loglevel", "error", "-nostats", + # No interactive keyboard prompts ("Press [q] to stop ..."). + "-nostdin", "-y", "-i", str(path),