OpenAIWhisper语音转文字工具Skill openai-whisper

OpenAI Whisper 是一个强大的本地语音识别工具,无需API密钥即可实现高精度语音转文字和翻译。支持多种音频格式和输出格式,适用于字幕制作、会议记录、内容创作等场景。关键词:语音识别,语音转文字,Whisper,本地转录,音频处理,AI语音,字幕生成,翻译工具。

NLP 9 次安装 186 次浏览 更新于 2/24/2026

name: openai-whisper description: 使用 Whisper CLI 进行本地语音转文字(无需 API 密钥)。 homepage: https://openai.com/research/whisper metadata: { “openclaw”: { “emoji”: “🎙️”, “requires”: { “bins”: [“whisper”] }, “install”: [ { “id”: “brew”, “kind”: “brew”, “formula”: “openai-whisper”, “bins”: [“whisper”], “label”: “安装 OpenAI Whisper (brew)”, }, ], }, }

Whisper (命令行界面)

使用 whisper 在本地转录音频。

快速开始

  • whisper /路径/音频.mp3 --model medium --output_format txt --output_dir .
  • whisper /路径/音频.m4a --task translate --output_format srt

注意

  • 模型在首次运行时将下载到 ~/.cache/whisper
  • 在此安装中,--model 默认为 turbo
  • 使用较小的模型以获得速度,使用较大的模型以获得准确性。