From 1ad56e9b6b47e02a7228b276b2c10879af500eb5 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Thu, 6 Jun 2024 20:26:47 +0800 Subject: [PATCH] if quiet mode just show transcription event without text --- otherarch/whispercpp/whisper_adapter.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/otherarch/whispercpp/whisper_adapter.cpp b/otherarch/whispercpp/whisper_adapter.cpp index 8ee9d5ae6..196fde71f 100644 --- a/otherarch/whispercpp/whisper_adapter.cpp +++ b/otherarch/whispercpp/whisper_adapter.cpp @@ -269,6 +269,8 @@ whisper_generation_outputs whispertype_generate(const whisper_generation_inputs if(!inputs.quiet) { printf("\nWhisper Transcribe Output: %s",whisper_output_text.c_str()); + } else { + printf("\nWhisper Transcribe Done."); } output.text = whisper_output_text.c_str(); output.status = 1;