Skip to content

Commit 1ad56e9

Browse files
committed
if quiet mode just show transcription event without text
1 parent 813cf82 commit 1ad56e9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

otherarch/whispercpp/whisper_adapter.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,8 @@ whisper_generation_outputs whispertype_generate(const whisper_generation_inputs
269269
if(!inputs.quiet)
270270
{
271271
printf("\nWhisper Transcribe Output: %s",whisper_output_text.c_str());
272+
} else {
273+
printf("\nWhisper Transcribe Done.");
272274
}
273275
output.text = whisper_output_text.c_str();
274276
output.status = 1;

0 commit comments

Comments
 (0)