Email or username:

Password:

Forgot your password?
Simon Willison

Blogged some notes on the new (still MIT licensed) Whisper Turbo model, quietly released by OpenAI yesterday

It’s both smaller and 8x faster than their previous Whisper Large simonwillison.net/2024/Oct/1/w

And you can run it on a Mac with “pip install mlx-whisper” and then:

import mlx_whisper
print(mlx_whisper.transcribe(
"path/to/audio",
path_or_hf_repo="mlx-community/whisper-turbo"
)["text"])

4 comments
Ian Wagner

@simon interesting they are releasing speech to text models. I wonder will anyone be releasing improved text to speech models anytime soon?

Simon Willison

@ianthetechie they haven’t ever released those models as open weights, just via their API

I expect they may announce improved API versions of their text to speech stuff today at their DevDay event

Bill Seitz

@simon on an Intel-silicon Mac, or only the Apple sand?

Simon Willison

@billseitz not sure! Would be interested to hear from an Intel Mac use who’s tried it out

Go Up