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

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

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

Hello everyone, I've tried to generate the large-v3 CoreML model with: `./models/generate-coreml-model.sh large-v3` but ran into this error: ``` Traceback (most recent call last): File "/Users/my_user/Dev/Modules/pywhispercpp/whisper.cpp/models/convert-whisper-to-coreml.py", line 2, in import...

When whisper.cpp is used as a sub-project with `WHISPER_METAL_EMBED_LIBRARY=ON`, the file paths of [ggml-metal.metal]( https://github.com/ggerganov/whisper.cpp/blob/master/CMakeLists.txt#L176) and [ggml-common.h]( https://github.com/ggerganov/whisper.cpp/blob/master/CMakeLists.txt#L177) are invalid because they use `${CMAKE_SOURCE_DIR}` instead of `${CMAKE_CURRENT_SOURCE_DIR}`. This would allow...

It would be great to be able to define the MSVC runtime library via [CMAKE_MSVC_RUNTIME_LIBRARY](https://cmake.org/cmake/help/latest/variable/CMAKE_MSVC_RUNTIME_LIBRARY.html) (or the MSVC_RUNTIME_LIBRARY property). However, this feature has only been included in CMake 3.15. Would...

Hi Linux - ubuntu 22.04 Tested commit 8fac645 - microphone is not passing audio to talk-llama , older builds ( from a month passing microphone audio and transcribe text from...

Noticed there's prediction outputs that include spam: > start,end,text 0,8640," 6 greens of fresh snow peas, 5 thick slabs of blue cheese and maybe a snack for her brothered" 8640,9000,"...

I get this CoreML error when running conversion with quantization: ```shell python3 models/convert-whisper-to-coreml.py --model tiny.en --encoder-only True --quantize True ``` Stacktrace: ```shell loretoparisi@Loretos-MBP whisper.cpp % python3 models/convert-whisper-to-coreml.py --model tiny.en --encoder-only...

When I attempted to transcribe the audio into Chinese text, it generated a lot of noise, despite having set both the microphone and speaker volumes to zero. My Computer Config:...

`Error copying file "/home/runner/work/whisper.cpp/whisper.cpp/bin/libwhisper.worker.js" to "/home/runner/work/whisper.cpp/whisper.cpp/bindings/javascript/libwhisper.worker.js".` Looking at [older passing](https://github.com/ggerganov/whisper.cpp/actions/runs/8719508950/job/23919006343) vs [newer failing](https://github.com/ggerganov/whisper.cpp/actions/runs/8815982125/job/24256436549) runs, we may notice that Emscripten SDK version changed from 3.1.57 to 3.1.58. In ChangeLog for [Emscripten...

WIP: for early review only. Do not merge. - add cmake option to build with ffmpeg - search for ffmpeg at cmake time - include ffmpegs/libav headers in main.cpp Remaining...