Openai Whisper
OpenAI Whisper:使用 Whisper 模型进行视频语音识别和转录。
clawhub install openai-whisperLocal speech-to-text with MLX Whisper (Apple Silicon optimized, no API key).
# Install Skill (downloads SKILL.md to .claude/skills/) clawhub install mlx-whisper # Then just tell Claude: "use Mlx Whisper to help me..."
# Same install command — works with all SKILL.md-compatible AI coding tools clawhub install mlx-whisper
This Skill is compatible with the OpenClaw standard. After installation, a SKILL.md file is auto-generated, usable by any OpenClaw-compatible AI Agent (Claude Code, Cursor, Windsurf, etc.).
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
~/.cache/huggingface/mlx-community/whisper-tiny; use --model mlx-community/whisper-large-v3-turbo for best results```bash
# 转录中文播客,输出带时间戳的 VTT 字幕
mlx-whisper podcast.m4a \
--language zh \
--model small \
--output-format vtt \
-o podcast_subtitles.vtt
# 批量转录多个音频文件
for file in *.mp3; do
mlx-whisper "$file" --language zh --model base -o "${file%.mp3}.txt"
done
```