Logging and queing #21

Merged
niat8586 merged 10 commits from develop into main 2025-02-09 15:57:45 +01:00
Showing only changes of commit 9f186c8406 - Show all commits

View File

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