Do not log transcribed text from whisper

Turning off the verbose mode when calling whisper process.
This should fix issue 
This commit is contained in:
Nico Athanassiadis 2025-02-07 11:33:12 +01:00
parent f6dfed08ee
commit 5eeca0dcd0

@ -47,7 +47,9 @@ public class Transcriber {
.append(" --output_dir ")
.append(outputDirectory)
.append(" --device ")
.append(selectedDevice);
.append(selectedDevice)
.append(" --verbose ")
.append("False");
if(language != null && !language.equalsIgnoreCase("auto")) {
whisperCommandOptions.append(" --language ")
.append(language);