From sundial-org-awesome-openclaw-skills-4
Transcribes audio to text locally using MLX Whisper on Apple Silicon. No API key needed, supports multiple models and output formats.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:mlx-whisperThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Local speech-to-text using Apple MLX, optimized for Apple Silicon Macs.
Local speech-to-text using Apple MLX, optimized for Apple Silicon Macs.
mlx_whisper /path/to/audio.mp3 --model mlx-community/whisper-large-v3-turbo
# Transcribe to text file
mlx_whisper audio.m4a -f txt -o ./output
# Transcribe with language hint
mlx_whisper audio.mp3 --language en --model mlx-community/whisper-large-v3-turbo
# Generate subtitles (SRT)
mlx_whisper video.mp4 -f srt -o ./subs
# Translate to English
mlx_whisper foreign.mp3 --task translate
| Model | Size | Speed | Quality |
|---|---|---|---|
| mlx-community/whisper-tiny | ~75MB | Fastest | Basic |
| mlx-community/whisper-base | ~140MB | Fast | Good |
| mlx-community/whisper-small | ~470MB | Medium | Better |
| mlx-community/whisper-medium | ~1.5GB | Slower | Great |
| mlx-community/whisper-large-v3 | ~3GB | Slowest | Best |
| mlx-community/whisper-large-v3-turbo | ~1.6GB | Fast | Excellent (Recommended) |
~/.cache/huggingface/mlx-community/whisper-tiny; use --model mlx-community/whisper-large-v3-turbo for best resultsnpx claudepluginhub sundial-org/awesome-openclaw-skillsTranscribes audio to text locally on Apple Silicon using Parakeet MLX ASR, no API key required. Supports multiple output formats (txt, srt, vtt, json).
Transcribes local audio/video files to Markdown and SRT subtitles using MLX/Whisper (Apple Silicon) or faster-whisper (others).
Transcribes audio/video to text via local MLX inference on macOS Apple Silicon or remote OpenAI-compatible ASR endpoints. Supports local files, URLs, and podcast/web pages. Also covers word-level timestamps via mlx-whisper.