-
I'm using the shorter code example from the readme - the first one under "Python usage". It works except if I try to set the model to any of the ".en" (English only) ones, in which case I get the error:
Using the english specific model does work when using whisper via command line. Does something more need to be done if running it in a script? Here's the full traceback:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Try Using |
Beta Was this translation helpful? Give feedback.
-
If you're using
|
Beta Was this translation helpful? Give feedback.
-
We had the same problem, fixed it by updating whisper to the latest Version with |
Beta Was this translation helpful? Give feedback.
Try
model.transcribe("file.wav",language='english')
Using
small.en
only slightly faster thansmall
on my M1 Mac Mini, and actually slightly less accurate on my one self-recorded example audio file.