From 6995da6d5d9bccd0425118d4713f8ce442067d5c Mon Sep 17 00:00:00 2001 From: Carl Pearson Date: Thu, 20 Feb 2025 05:59:05 -0700 Subject: [PATCH] veryfast -> fast --- workers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers.go b/workers.go index c018ee3..8aca3cc 100644 --- a/workers.go +++ b/workers.go @@ -67,7 +67,7 @@ func videoToVideo(sem chan struct{}, transID uint, srcFilepath string) { } stdout, stderr, err := ffmpeg.Ffmpeg("-i", srcFilepath, "-vf", vf, "-c:v", "libx264", - "-crf", "23", "-preset", "veryfast", "-c:a", "aac", "-b:a", fmt.Sprintf("%dk", audioBitrate), + "-crf", "23", "-preset", "fast", "-c:a", "aac", "-b:a", fmt.Sprintf("%dk", audioBitrate), dstFilepath) if err != nil { fmt.Println("Error: convert to video file", srcFilepath, "->", dstFilepath, string(stdout), string(stderr))