ESC
输入关键词搜索文章
目录

Whisper

参考资料

NLP Cloud CSS @ IPP

pip install git+https://github.com/openai/whisper.git
# on Ubuntu or Debian
sudo apt update && sudo apt install ffmpeg

Et puis aller sur python,

import whisper

model = whisper.load_model("large")
result = model.transcribe("audio.mp3")
print(result["text"])

Mais cela prendrais trop d'espace. Est-ce que je peux utiliser le whisper sans avoir à l&39;installer ?