语音识别
目录
1. 简单介绍
2. 代码调用
1. 简单介绍
Introducing Whisper/
OpenAI 的开源自动语音识别神经网络 whisper
2. 代码调用
安装
# whisper
pip install git+.git # on Ubuntu or Debian
sudo apt update && sudo apt install ffmpeg# 更多参考
Python 调用
import whispermodel = whisper.load_model("base")
result = model.transcribe("audio.mp3")
print(result["text"])
语音识别
目录
1. 简单介绍
2. 代码调用
1. 简单介绍
Introducing Whisper/
OpenAI 的开源自动语音识别神经网络 whisper
2. 代码调用
安装
# whisper
pip install git+.git # on Ubuntu or Debian
sudo apt update && sudo apt install ffmpeg# 更多参考
Python 调用
import whispermodel = whisper.load_model("base")
result = model.transcribe("audio.mp3")
print(result["text"])