From b1856b9d45502ba1a35e1d2ae6ca12fd17223895 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Sun, 23 May 2021 16:02:39 +0200 Subject: [PATCH] RawTherapee: Add -s cli param to use existing sidecar files #1267 see https://rawpedia.rawtherapee.com/Command-Line_Options --- internal/photoprism/convert.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/photoprism/convert.go b/internal/photoprism/convert.go index a6e6636a8..2b034b563 100644 --- a/internal/photoprism/convert.go +++ b/internal/photoprism/convert.go @@ -204,7 +204,7 @@ func (c *Convert) JpegConvertCommand(f *MediaFile, jpegName string, xmpName stri jpegQuality := fmt.Sprintf("-j%d", c.conf.JpegQuality()) profile := filepath.Join(conf.AssetsPath(), "profiles", "raw.pp3") - args := []string{"-o", jpegName, "-p", profile, "-d", jpegQuality, "-js3", "-b8", "-c", f.FileName()} + args := []string{"-o", jpegName, "-p", profile, "-s", "-d", jpegQuality, "-js3", "-b8", "-c", f.FileName()} result = exec.Command(c.conf.RawtherapeeBin(), args...) } else {