mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
* Terminal: measure grapheme display width * Tests: cover grapheme terminal width * Terminal: wrap table cells by grapheme width * Tests: cover emoji table alignment * Terminal: refine table wrapping and width handling * Terminal: stop shrinking CLI tables by one column * Skills: use Terminal-safe emoji in list output * Changelog: note terminal skills table fixes * Skills: normalize emoji presentation across outputs * Terminal: consume unsupported escape bytes in tables
39 lines
912 B
Markdown
39 lines
912 B
Markdown
---
|
|
name: openai-whisper
|
|
description: Local speech-to-text with the Whisper CLI (no API key).
|
|
homepage: https://openai.com/research/whisper
|
|
metadata:
|
|
{
|
|
"openclaw":
|
|
{
|
|
"emoji": "🎤",
|
|
"requires": { "bins": ["whisper"] },
|
|
"install":
|
|
[
|
|
{
|
|
"id": "brew",
|
|
"kind": "brew",
|
|
"formula": "openai-whisper",
|
|
"bins": ["whisper"],
|
|
"label": "Install OpenAI Whisper (brew)",
|
|
},
|
|
],
|
|
},
|
|
}
|
|
---
|
|
|
|
# Whisper (CLI)
|
|
|
|
Use `whisper` to transcribe audio locally.
|
|
|
|
Quick start
|
|
|
|
- `whisper /path/audio.mp3 --model medium --output_format txt --output_dir .`
|
|
- `whisper /path/audio.m4a --task translate --output_format srt`
|
|
|
|
Notes
|
|
|
|
- Models download to `~/.cache/whisper` on first run.
|
|
- `--model` defaults to `turbo` on this install.
|
|
- Use smaller models for speed, larger for accuracy.
|