whisper.cpp
whisper.cpp copied to clipboard
Port of OpenAI's Whisper model in C/C++
I followed the steps outlined in [models/README.md](https://github.com/ggerganov/whisper.cpp/blob/master/models/README.md): ```sh git clone https://github.com/ggerganov/whisper.cpp git clone https://huggingface.co/distil-whisper/distil-medium.en git clone https://huggingface.co/distil-whisper/distil-large-v2 # convert to ggml python3 whisper.cpp/models/convert-h5-to-ggml.py distil-medium.en/ whisper.cpp/ some-output-folder/ ``` Doing so gives...
Ahh, hey. I used whisper.cpp to create an app for mac and windows that transcribes audio and video. I didn't have a single problem with the library. It has been...
Hello there. I believe that a common usage of Whisper is to fine-tune a smaller model (e.g., base/small) with your data and then use it in a specific context. However,...
https://github.com/cdeos/kantv/assets/6889919/6d59e8e2-c33b-4db7-96f9-0c6176870305 also reported on this issue: https://github.com/cdeos/kantv/issues/84 it seems it's a random issue.
feat(examples)!: node addon support muti input files and callback function support provide progress
For more details, check https://github.com/zcf0508/whisper.cpp/commit/5ecffc9d8e05ce48c694f704a33253563bf04218#diff-1280c11d337695487e55d2408d1761719c84d8273fc183ead2ba2b8bd1c7425e --- 1. `fname_inp` now is a file path array 2. the parameter of callback function is an object that return result and progress
I noticed that most of the scripts were missing the `large-v3-q5_0` model and another script had it mislabeled as `large-q5_0`. In this PR I added the `large-v3-q5_0` model to all...
whisper with language set when other language spoken it return translated to the language in option how to let whisper to not translate and just return blank or ignore the...
I tried to transcribe a random youtube [short](https://www.youtube.com/shorts/Y6JnGj7r-bc). Converted it to wav file using ffmpeg. Here is the [wav](https://jumpshare.com/s/HqqoI8FYfeu6OpMyjB9O). These are the results after trying it on 3 different models....
In some CUDA installations `libcuda.so` is present only in the stubs folders. Example log: ``` root@76d08ab315dc:/build/sources/whisper.cpp# WHISPER_CUBLAS=1 make -j libwhisper.so I whisper.cpp build info: I UNAME_S: Linux I UNAME_P: x86_64...