-fixed default magick command to work with new versions that doesn't
 actually have 'magick' in it.
This commit is contained in:
zii 2025-02-23 09:24:35 -05:00
parent 5093ee6c8b
commit 492fa88585
2 changed files with 2 additions and 2 deletions

View File

@ -193,7 +193,7 @@ bool rdConf(const QString &filePath, shared_t *share, bool reset)
share->evMaxSecs = 30;
share->conf = filePath;
share->outputType = "stderr";
share->compCmd = "magick compare -metric FUZZ " + QString(PREV_IMG) + " " + QString(NEXT_IMG) + " /dev/null";
share->compCmd = "compare -metric FUZZ " + QString(PREV_IMG) + " " + QString(NEXT_IMG) + " /dev/null";
share->vidCodec = "copy";
share->audCodec = "copy";
share->streamExt = ".mkv";

View File

@ -41,7 +41,7 @@
using namespace std;
#define APP_VERSION "3.6.t9"
#define APP_VERSION "3.6.t10"
#define APP_NAME "JustMotion"
#define APP_TARGET "jmotion"
#define DATETIME_FMT "yyyyMMddhhmmss"