This commit is contained in:
Alex Eidt 2022-07-25 14:59:38 -07:00
parent e73f59496b
commit 8afa8f63fb

View file

@ -198,7 +198,7 @@ func initVideoWriter(writer *VideoWriter) error {
command = append( command = append(
command, command,
"-vcodec", writer.codec, "-vcodec", writer.codec,
"-pix_fmt", "yuv420p", // Output is 8-but RGB, no alpha. "-pix_fmt", "yuv420p", // Output is 8-bit RGB, no alpha.
) )
// Code from the imageio-ffmpeg project. // Code from the imageio-ffmpeg project.