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

I made a React Native binding of whisper.cpp - [whisper.rn](https://github.com/mybigday/whisper.rn), hope someone is interested. :) For README update, I added it to the javascript bindings area.

This change only outputs the completed lines to the text file, the lines that are later overwritten are not output. This allows stream to be better used for dictation.

I've got everything build, SDL2 in-line, and its anecdotally working `stream -c 0 -t 8 --length 500 -vth 0.1` is the only setting I've been able to consistently get some...

It seems I missed to pass the state for encoder during auto-detect language. This is the fix. Issue reported on: https://github.com/sandrohanea/whisper.net/issues/18

As an experiment it would be interesting to alter the ggml format a bit and then mmap it directly. Maybe this coulde reduce memory pressure for small systems

enhancement

I've compiled your `command` and `main` example projects with latest 16-th Clang on Windows. I have CPU `Intel i7-2630QM @ 2.00GHz`, which has 4 cores (8 hardware threads). And CPU...

Make the computer say back the command

I'm running whisper in a virtualized environment for tests. The `Makefile` is able to build the binary just fine, but as a library I was running in an `illegal instruction`...

The word-level timestamp is a very interesting and useful feature introduced in the recent version of OpenAI's Whisper. (https://github.com/openai/whisper/commit/500d0fe9668fae5fe2af2b6a3c4950f8a29aa145) word-level timestamps in `transcribe` --word_timestamps extract word-level timestamps and refine the...