whisper.cpp icon indicating copy to clipboard operation
whisper.cpp copied to clipboard

Port of OpenAI's Whisper model in C/C++

Results 748 whisper.cpp issues
Sort by recently updated
recently updated
newest added

It would be useful if the API had an `initial_prompt` parameter to set a string as the initial prompt. The OpenAI docs recommend always setting it to fix punctation, so...

enhancement
good first issue

Whisper sometimes output the transcription without punctuation, even if you set an initial prompt like `Hello, welcome to my lecture.`. Maybe Whisper.cpp could do something similar to https://github.com/jumon/whisper-punctuator to try...

enhancement

This pull request aims to modify the code for the Whisper Node.js addon to avoid running in a blocking manner. Previously, even though you could import it in Node.js and...

I'm working on a project for voice-controlling a robot and want to use whisper.cpp but the problem is that it is only a terminal program. I want to use it...

enhancement
good first issue

It does the same thing from [the makefile of main.cpp](https://github.com/ggerganov/whisper.cpp/blob/master/Makefile#L33) to optimize ggml in release mode for demo better performance on iOS/macOS app. Under the test of M1 Max MacBook...

Related to #637. Add `initial_prompt` so we can avoid some re-implement of `prompt_tokens` and `n_prompt_tokens`. This changes removes the print of prompt tokens because it may not ideal in whisper_full.

Hi All, Thank you ggerganov for your hard work on this. We're looking to improve our whisper transcriptions consistency. So far I've run 17 files on a Mac roughly 1...

Hello, I'm very pleased that you could share such a great project. I have a question to ask you. When using streaming speech recognition, the "--language" option can only be...

This adds a new `streammq` example that streams text over ZeroMQ in a pub/sub model. This enables other tools to access what is being dictated from a whisper model running.

Sometimes whisper returns output including double quotes. This should be escaped in json values (`\"`).