目录
1. 简单介绍
introducing whisperhttps://openai.com/blog/whisper/
openai 的开源自动语音识别神经网络 whisper

2. 代码调用
安装
# 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 调用
import whisper
model = whisper.load_model("base")
result = model.transcribe("audio.mp3")
print(result["text"])
发表评论