Add -nostdin to ffmpeg preview conversions to suppress keyboard prompts

This commit is contained in:
2026-08-11 05:32:27 +00:00
parent e678c8c267
commit 953ec628a0
+2
View File
@@ -218,6 +218,8 @@ def _image_via_ffmpeg(path: Path, maxsize: int, quality: int) -> bytes:
"-loglevel", "-loglevel",
"error", "error",
"-nostats", "-nostats",
# No interactive keyboard prompts ("Press [q] to stop ...").
"-nostdin",
"-y", "-y",
"-i", "-i",
str(path), str(path),