Python bindings for whisper.cpp
Go to file
2022-12-11 09:14:44 +00:00
whisper.cpp@85c9ac18b5 Added whisper.cpp submodule 2022-12-10 23:29:58 +00:00
.gitignore Added git ignore. 2022-12-11 00:09:45 +00:00
.gitmodules Added whisper.cpp submodule 2022-12-10 23:29:58 +00:00
README.md Rename README to README.md 2022-12-11 09:14:44 +00:00
setup.py update 2022-12-11 01:45:58 +00:00
whispercpp.pxd update 2022-12-11 06:02:45 +00:00
whispercpp.pyx update 2022-12-11 06:02:45 +00:00

Python bindings for whisper.cpp

pip install git+https://github.com/o4dev/whispercpp.py

from whispercpp import Whisper

w = Whisper('tiny')

result = w.transcribe("myfile.mp3")
text = w.extract_text(result)