non default larger whisper model

This commit is contained in:
Bel LaPointe
2023-03-28 11:25:47 -06:00
parent 353a613c2b
commit 7e2c9d60a1

View File

@@ -118,7 +118,7 @@ class Parser(threading.Thread):
def _run(self, clip):
r = sr.Recognizer()
return r.recognize_whisper(clip, language="english")
return r.recognize_whisper(clip, language="english", model="small.en") # tiny.en=32x, base.en=16x, small.en=6x
def load_dot_notation(v, s):
items = s.replace("[]", ".[]").split(".")