natrys / whisper.el

Speech-to-Text interface for Emacs using OpenAI's whisper model and whisper.cpp as inference engine.
140 stars 10 forks source link

whisper--check-install-and-run needs manual installation and patch on Win10. #10

Closed ujikol closed 10 months ago

ujikol commented 1 year ago

The way (defun whisper--check-install-and-run) is implemented does not work on Win10.

My workaround is to install whisper.cpp and model manually and patch: (defun whisper--check-install-and-run (buffer status) (whisper--record-audio))

natrys commented 10 months ago

You can now set whisper-install-whispercpp to 'manual to skip over automatic installation (assuming you have manually installed it in whisper-install-directory). That should remove the need to do patching.