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 requested feature can be found [here](https://github.com/ggerganov/whisper.cpp/issues/338#issue-1511369038). Currently, in order to generate Karaoke subtitles in .ass format, I have to perform two separate passes. The first pass is used to...

It seems that if the audio file is too long, the generated wts file cannot be converted to video. [enchiridion-01-epictetus_64kb.wav.wts.zip](https://github.com/ggerganov/whisper.cpp/files/12642313/enchiridion-01-epictetus_64kb.wav.wts.zip)

bug

``` GGML_SYCL_DEVICE=0 ./build/bin/main -m models/ggml-base.bin -f samples/jfk.wav whisper_init_from_file_with_params_no_state: loading model from 'models/ggml-base.bin' whisper_model_load: loading model whisper_model_load: n_vocab = 51865 whisper_model_load: n_audio_ctx = 1500 whisper_model_load: n_audio_state = 512 whisper_model_load: n_audio_head =...

Is it possible to fine-tune multilingual whisper.cpp models, in a non-english language, using python, just like we can fine-tune any other OpenAI whisper model. If so, please help on how...

I'm using Hello Transcribe into my iPhone 14 Pro Max with iOS 17.4.1 I want to use this application for my recorded Videos upload to YouTube but before upload videos...

Any hint on how I need to convert the buffer from AVAudioNode installTap so it is compatible with whisper.cpp? https://developer.apple.com/documentation/avfaudio/avaudionode/1387122-installtap I tried simply to convert it to an array: `Array(UnsafeBufferPointer(start:...

when running a non .en model , and running with flag -l auto , it transcribes the audio into different languages , It would have been nice if it would...

Hello @ggerganov I managed to reuse the code from the [stream example](https://github.com/ggerganov/whisper.cpp/blob/master/examples/stream/stream.cpp) and integrate it into a React application using Vite.js. Keeping the basic implementation, adapted in TypeScript, I have...

Hello, I'm using a macbook m1 Mac OS version 14.4.1 I assembled whisper for myself following the instructions. As a result, it gives me an error that it cannot load...

Is there a way to use stream.cpp but stream the output into a buffer or queue. I want to implement a real time speech to text but use the transcription...