From 8afa8f63fb863a6972f7c9e612222f957f0651cd Mon Sep 17 00:00:00 2001 From: Alex Eidt Date: Mon, 25 Jul 2022 14:59:38 -0700 Subject: [PATCH] Typo --- videowriter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/videowriter.go b/videowriter.go index c4d32ee..330a947 100644 --- a/videowriter.go +++ b/videowriter.go @@ -198,7 +198,7 @@ func initVideoWriter(writer *VideoWriter) error { command = append( command, "-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.