Agent Skills
› spinabot/brigade
› openai-whisper
openai-whisper
GitHub使用 Whisper CLI 在本地进行音频转录,无需 API 密钥。支持多种格式输入及 txt/srt 输出,默认模型为 turbo,可根据需求选择模型大小以平衡速度与精度。
触发场景
用户需要转录本地音频文件
用户希望将语音转换为文本或字幕
用户提到使用 Whisper 进行离线语音识别
安装
npx skills add spinabot/brigade --skill openai-whisper -g -y
SKILL.md
Frontmatter
{
"name": "openai-whisper",
"homepage": "https:\/\/openai.com\/research\/whisper",
"metadata": {
"brigade": {
"emoji": "🎤",
"install": [
{
"id": "brew",
"bins": [
"whisper"
],
"kind": "brew",
"label": "Install OpenAI Whisper (brew)",
"formula": "openai-whisper"
}
],
"requires": {
"bins": [
"whisper"
]
}
}
},
"description": "Local speech-to-text with the Whisper CLI (no API key)."
}
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/whisperon first run. --modeldefaults toturboon this install.- Use smaller models for speed, larger for accuracy.
版本历史
- db99206 当前 2026-07-05 10:59


