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

The node package that's currently built is not an ES6 compatible package. I've tried adding the `-s EXPORT_ES6` flag and it seems to work properly, but the output still has...

help wanted
build

I noticed a few escaping issues: 1. The input name is just piped raw into the output. https://github.com/ggerganov/whisper.cpp/blob/ac521a566ea6a79ba968c30101140db9f65d187b/examples/main/main.cpp#L342 2. Likewise for the output file. https://github.com/ggerganov/whisper.cpp/blob/ac521a566ea6a79ba968c30101140db9f65d187b/examples/main/main.cpp#L425 The font, by contrast, is...

enhancement
good first issue

I love the Karaoke option. However, since I'm on Windows it is rather tricky to get working. Would you be willing to change the Karaoke output to a more cross...

enhancement
good first issue

So lets say you do -8 and you have 16 threads(hyper threading) This is the fastest it will go, but the UI says 8/16. If you do 16/16 threads it...

Hi I've messed around a bit with xcode and SDL Mac etc but I'm flying blind -- what's the easiest way to get the examples/command running on iOS (M1)?

question

if I load a model, and in multiple threads, create new whisper contexts, should you expect that I could execute whisper on the same model in separate threads? Right now...

question

For efficiency in storage, parsing and accuracy from representing timestamps in milliseconds (rather than floating-point numbers), this PR, like https://github.com/openai/whisper/pull/228 adds feature to output CSV file containing lines formatted like:...

The eventual crash occurs here: dst_data is NULL because params->wdata is NULL ![image](https://user-images.githubusercontent.com/78916608/209989435-c71a499a-7186-4696-bc90-f2a49682c565.png) Cause is way up the stack where cgraph->work is zero: ![image](https://user-images.githubusercontent.com/78916608/209988877-4d22a5a6-836e-42a4-921b-276800f5b3cf.png) My environment is Visual Studio 2022....

ref #200 Instead of creating and joining new threads for each graph compute, we create a thread pool with active threads and make them wait on a condition variable instead...