fix: use lossless PCM audio in MP4 exports

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-11 23:26:02 +02:00
parent 93cee40b06
commit 25250d6d8d
+1 -1
View File
@@ -85,7 +85,7 @@ def build_ffmpeg_command(
os.path.join(output_path, "frame_%04d.webp"),
]
else:
cmd += ["-c:v", "libx264", "-c:a", "aac", output_path]
cmd += ["-c:v", "libx264", "-c:a", "pcm_s16le", output_path]
return cmd