SwiftWhisper
SwiftWhisper copied to clipboard
🎤 The easiest way to transcribe audio in Swift
When I use the large-v3 model in my swiftui app, the app crashes. The model is loaded correctly, but then errors with: `Assertion failed: (mel_inp.n_mel == n_mels), function whisper_encode_internal, file...
Hey, awesome package! I wanted to ask how one could use this for on-device realtime description with microphone audio, similar to the [objc example](https://github.com/ggerganov/whisper.cpp/tree/c353100bad5b8420332d2d451323214c84c66950/examples/whisper.objc) from the whisper.cpp package
Is it possible to get the confidence for an individual segment/word as part of the results? Thanks
When `Whisper.init(fromFileURL)` is called with a file URL that is a file that exists, but not a valid model file, the error condition from the underlying whisper.cpp library is not...
**This PR updates whisper.cpp and adds metal support.** This PR should not be merged to master, however I'm opening it regardless since it provides an example others might find useful...
I have a swift project that uses Swift whisper and package from https://github.com/eastriverlee/LLM.swift. Plan was to use swift whisper to transcribe speech and send it to LLM. Both these packages...
Hey, I love the work. Super clean and easy to understand.. I have one question, does it support word level timestamp? i mean you didn't provide example of how to...
Hey Guys, Shouldn't we cleanup the model after using it? THanks