small fix ffmpeg encoding

This commit is contained in:
Remi Cadene
2025-04-21 10:59:06 +02:00
parent 4375a05a9f
commit 2866d0770f

View File

@@ -264,7 +264,7 @@ def encode_video_frames(
[
("-f", "image2"),
("-r", str(fps)),
("-i", str(imgs_dir / "frame_%06d.png")),
("-i", str(imgs_dir / "frame-%06d.png")),
("-vcodec", vcodec),
("-pix_fmt", pix_fmt),
]