5 ms·
Are you thinking about the realtime use-case or batch use-case? For just transcribing file/audio, `owhisper run <MODEL> --file a.wav` or `curl httpsL//someth
by yujonglee 1y ago
Are you thinking about the realtime use-case or batch use-case?
For just transcribing file/audio,
`owhisper run <MODEL> --file a.wav` or
`curl httpsL//something.com/audio.wav | owhisper run <MODEL>`
might makes sense.
- mijoharas 1y agoagreed, both of those make sense, but I was thinking realtime. (pipes can stream data, I'd like and find useful something that can stream tts to stdout in realtime.)
- yujonglee 1y agoIt's open-source. Happy to review & merge if you can send us PR! https://github.com/fastrepl/hyprnote/blob/8bc7a5eeae0fe586254d2c042e02580e1a9fe0fa/owhisper/owhisper-server/src/main.rs#L35 https://github.com/fastrepl/hyprnote/blob/8bc7a5eeae0fe58625...