fix: ffmpeg command type hint, -ss comment, FileNotFoundError handler

This commit is contained in:
2026-04-06 12:08:42 +02:00
parent f6832f58a6
commit 8a97c3c7c2
2 changed files with 6 additions and 1 deletions
+1
View File
@@ -26,6 +26,7 @@ def test_format_time_no_sixty_rollover():
def test_ffmpeg_command():
cmd = build_ffmpeg_command("/in/video.mp4", 12.5, "/out/clip_001.mp4")
assert cmd[0] == "ffmpeg"
assert "-y" in cmd
assert "-ss" in cmd
assert str(12.5) in cmd
assert "-t" in cmd