Open edmundmiller opened 1 year ago
I have the distilled model downloaded. How do I make whisper.el use that?
~/code/misc/whisper.cpp/models/ggml-distil-large-v3.bin
I got it to work:
(setq
whisper-install-whispercpp 'manual
whisper-install-directory (expand-file-name "~/code/misc/")
;; =whisper.cpp= must be found inside `whisper-install-directory'.
whisper-model "distil-large-v3"
whisper-language "en"
whisper-translate nil
;; whisper-use-threads (/ (num-processors) 2)
whisper--ffmpeg-input-device ":0"
;; Use `rk/select-default-audio-device' to set this interactively.
)
https://github.com/ggerganov/whisper.cpp/pull/1424
It'd be nice to give this a shot.