音频转文字 openai whisper
下载 bili 视频
1 | pip install you-get |
视频转音频
1 | scoop install ffmpeg |
音频转文字 📘
** whisper **:
1
2
3
4pip install -U openai-whisper
whisper audio.flac audio.mp3 audio.wav --model small --device cpu --language zh** python **:
使用 Python 运行main.py
脚本。1
2
3
4
5
6import whisper
model = whisper.load_model("small", device="cpu")
result = model.transcribe(f"123.mp3")
print(result["text"]))