目录
1. 简单介绍
2. 代码调用
1. 简单介绍
Introducing Whisperhttps://openai.com/blog/whisper/
OpenAI 的开源自动语音识别神经网络 whisper
2. 代码调用
安装文章来源:https://www.toymoban.com/news/detail-519434.html
# whisper
pip install git+https://github.com/openai/whisper.git
# on Ubuntu or Debian
sudo apt update && sudo apt install ffmpeg
# 更多参考 https://github.com/openai/whisper
Python 调用文章来源地址https://www.toymoban.com/news/detail-519434.html
import whisper
model = whisper.load_model("base")
result = model.transcribe("audio.mp3")
print(result["text"])
到了这里,关于语音识别 - ASR whisper的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!