AIAI工具导航
首页|全部工具对比工作流博客使用指南AI 生态提交工具|

AI工具导航

发现最适合你的AI智能工具

浏览

  • 全部工具
  • 榜单
  • 最新上线
  • 对比

社区

  • 提示词分享
  • 社区讨论
  • 工作流
  • 站点动态

资源

  • 博客
  • 使用指南
  • AI 生态
  • 价格对比

关于

  • 提交工具
  • 数据统计
  • 站点状态
  • API 文档

订阅周刊

© 2026 AI工具导航. 保留所有权利.
首页搜索榜单工作流
首页/模型部署/Whisper
🎙️

Whisper 部署教程

OpenAI

OpenAI 开源语音识别模型,99 种语言,准确率 95%+。

语音识别开源多语言
难度
简单
耗时
10 分钟
平台
本地 (Python/Ollama)
硬件
Tiny: 1GB RAM / Large-v3: 10GB VRAM

✨ 核心亮点

99 种语言 开源免费 实时转写 说话者分离
1

Python 本地部署

  1. pip install openai-whisper
  2. 命令行: whisper audio.mp3 --model large-v3 --language zh
  3. Python: import whisper model = whisper.load_model('base') result = model.transcribe('audio.mp3')
2

OpenAI API (云端)

  1. from openai import OpenAI client = OpenAI(api_key='...')
  2. audio_file = open('audio.mp3', 'rb') transcript = client.audio.transcriptions.create(model='whisper-1', file=audio_file)
  3. 价格: $0.006/分钟
返回全部部署教程