From cc31fdbe9facbfb20ee0e13dbdff519585235778 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Sun, 1 May 2022 18:09:46 +0200 Subject: [PATCH] Videos: Fix bitrate typo in ffmpeg/convert.go #2228 --- internal/ffmpeg/convert.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ffmpeg/convert.go b/internal/ffmpeg/convert.go index 35355ff16..c7f9d9d52 100644 --- a/internal/ffmpeg/convert.go +++ b/internal/ffmpeg/convert.go @@ -53,7 +53,7 @@ func AvcConvertCommand(fileName, avcName, ffmpegBin, bitrate string, encoder Avc "-vsync", "vfr", "-r", "30", "-b:v", bitrate, - "-itrate", bitrate, + "-bitrate", bitrate, "-f", "mp4", "-y", avcName,