mlx-community/whisper-small-8bit
048
mlx-community/whisper-small-8bit
This model was converted to MLX format from openai/whisper-small using mlx-audio-plus version 0.1.4.
Use with mlx-audio-plus
pip install -U mlx-audio-plusCommand line
mlx_audio.stt --model mlx-community/whisper-small-8bit --audio audio.mp3Python
from mlx_audio.stt import transcribe
result = transcribe(
audio="audio.mp3",
model="mlx-community/whisper-small-8bit",
)
print(result["text"])