Install
openclaw skills install stt-simpleSimple local Speech-To-Text using Whisper. One-command install with auto model download. Supports 99+ languages.
openclaw skills install stt-simple一键安装本地语音识别,支持 99+ 语言。
One-click local speech recognition supporting 99+ languages.
# 自动安装虚拟环境 + 依赖 + 模型
# Auto-installs virtual env + dependencies + model
/root/.openclaw/workspace/skills/stt-simple/install.sh
# 命令行转换 / Command line conversion
/root/.openclaw/venv/stt-simple/bin/whisper audio.ogg --model small --language Chinese
# Python API
/root/.openclaw/venv/stt-simple/bin/python \
/root/.openclaw/workspace/skills/stt-simple/stt_simple.py \
audio.ogg small zh
install.sh 自动完成 / automatically completes:
/root/.openclaw/venv/stt-simple/openai-whisper + ffmpeg| 模型 / Model | 大小 / Size | 速度 / Speed | 精度 / Accuracy | 场景 / Use Case |
|---|---|---|---|---|
tiny | 39MB | ⚡⚡⚡ | ⭐⭐⭐ | 快速测试 / Quick testing |
base | 74MB | ⚡⚡ | ⭐⭐⭐⭐ | 日常使用 / Daily use |
small | 244MB | ⚡ | ⭐⭐⭐⭐⭐ | 推荐 / Recommended |
medium | 769MB | 🐌 | ⭐⭐⭐⭐⭐ | 高精度 / High accuracy |
large | 1.5GB | 🐌🐌 | ⭐⭐⭐⭐⭐+ | 最佳质量 / Best quality |
zh 或 Chineseen 或 Englishja 或 Japanese--language / omit --language.txt - 纯文本 / Plain text.json - 完整结果(含时间戳)/ Full results (with timestamps).srt - 字幕格式 / Subtitle format.vtt - WebVTT# 检查安装 / Check installation
/root/.openclaw/venv/stt-simple/bin/whisper --version
# 重新安装 / Reinstall
rm -rf /root/.openclaw/venv/stt-simple
/root/.openclaw/workspace/skills/stt-simple/install.sh