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

Noticed rarely whisper cpp generates .txt, .vtt, and .vrt that contains invalid UTF-8 byte character. Would this be something expected from the whisper model that the user needs to handle?...

Golang bindings are 45 times slower than the C++ binary when transcoding `samples/jfk.wav` using the `ggml-tiny.en.bin` model. |C++ binary|Golang bindings| | --- | --- | |1.428s|63.919s| C++ and Golang examples...

Environment: I am sending Whisper short chunks of about 3 seconds of audio. I set the parameter m_params.max_tokens=3 because I am not expecting many tokens in this amount of time....

question

I'm able to build normal ```make``` command however, when I build with ```make stream``` it shows the following errors. does anyone know how to solve this? ``` In file included...

duplicate

@ggerganov I was wondering if the speedup option can be made so it is customizable, let's say between 1x and 2x, because some audios have a sweet spot of around...

enhancement
low priority

From what I can see no_context = true by default and until and unless we explicitly set it to false, through "-kc" or "--keep-context" optional, I believe the context will...

question

The idea is to avoid keeping all intermediate tensors of the computation graph by introducing "scratch" buffers to `ggml` https://github.com/ggerganov/whisper.cpp/issues/272#issuecomment-1353739709 I initially thought it would be enough to just keep...

Hi , I am newbie. I was wondering which method to choose from an app. it gives me 2 options Whisper.cpp and Whisper. So I would like to ask what's...

question

The c-style api/python bindings are not working on windows. On Linux/MacOS/WSL the code snippets from issue #9 are working without any trouble. But on windows the adjusted code is just...

bindings