18 lines
342 B
Markdown
18 lines
342 B
Markdown
Python bindings for whisper.cpp
|
|
===============================
|
|
|
|
---
|
|
`pip install git+https://git.brz9.dev/ed/whispercpp.py`
|
|
|
|
```python
|
|
from whispercpp import Whisper
|
|
|
|
w = Whisper('tiny')
|
|
|
|
result = w.transcribe("myfile.mp3", lang="en")
|
|
text = w.extract_text(result)
|
|
```
|
|
|
|
Note: default parameters might need to be tweaked.
|
|
See Whispercpp.pyx.
|