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

Building whisper.cpp on Fedora 38 (GCC 13) fails due to a multitude of undefined symbols. The first error occurs since `uint8_t` has not been defined in this scope. As far...

Updated the escape_double_quotes() function such that the function now escapes both double quotes and backslashes in the input string. Changes Made: - Renamed the function to escape_quotes_and_backslashes - Modified the...

is there a way to run whisper.cpp on gpu?

I cloned the code to local and get cormel-small downloaded but failed to make it I get this error :`unable to find utility "coremlc", not a developer tool or in...

When setting the model path on Windows using Windows path separators, the separator character is not escaped in the JSON output, resulting in invalid JSON. This issue is present in...

bug
good first issue

tested by `./tests/run-tests.sh tiny.en` - use STL to rewrite some for-loops. - use `Path` to avoid catenating string path. - `self.field = v` instead of `setattr(self, "field", v)` about designated...

Greetings, I tried running whisper.cpp with a recording of a committee hearing at the European Parliament (which offer real time interpretation in EU languages as well as the original file...

I want to benchmark streaming on a bunch of audio samples. It would be swift and efficient if the "stream" cli could input audio files and internally stream them. Can...

enhancement
good first issue

In the readme, the current method to get word-level timestamp is using `--max-len 1` option. For CJK languages (probably include other languages that uses non-ascii characters and don't use space...

Hi! Were you able to use WebRTC stream as an input to stream.cpp? I was trying to hack a webRTC input stream into the stream.cpp code but it's not clear...