From 68d9c4bb6682000d8f1e83c2086331bfb69721e3 Mon Sep 17 00:00:00 2001 From: Leonid Nikitin Date: Thu, 7 Mar 2024 22:50:00 +0500 Subject: [PATCH] I fixed it in OS Windows so that the console window would not appear. --- kernel/convertor.go | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/convertor.go b/kernel/convertor.go index f0843bc..6754874 100644 --- a/kernel/convertor.go +++ b/kernel/convertor.go @@ -201,6 +201,7 @@ func (s Convertor) ChangeFFprobePath(path string) (bool, error) { func (s Convertor) GetSupportFormats() (encoder.ConvertorFormatsContract, error) { formats := encoder.NewConvertorFormats() cmd := exec.Command(s.ffPathUtilities.FFmpeg, "-encoders") + helper.PrepareBackgroundCommand(cmd) stdOut, err := cmd.StdoutPipe() if err != nil {