|
|
||
|---|---|---|
| whisper.cpp@85c9ac18b5 | ||
| .gitignore | ||
| .gitmodules | ||
| README | ||
| setup.py | ||
| whispercpp.pxd | ||
| whispercpp.pyx | ||
README
Python bindings for whisper.cpp
===============================
`pip install git+https://github.com/o4dev/whispercpp.py`
```python
from whispercpp import Whisper
w = Whisper('tiny')
result = w.transcribe("myfile.mp3")
text = w.extract_text(result)
```