https://github.com/stlukey/whispercpp.py
Python bindings for whisper.cpp
https://github.com/stlukey/whispercpp.py
Last synced: 3 days ago
JSON representation
Python bindings for whisper.cpp
- Host: GitHub
- URL: https://github.com/stlukey/whispercpp.py
- Owner: stlukey
- License: mit
- Created: 2022-12-10T23:30:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-01T13:35:14.000Z (about 1 year ago)
- Last Synced: 2024-11-20T03:32:23.346Z (8 months ago)
- Language: Python
- Size: 47.9 KB
- Stars: 216
- Watchers: 4
- Forks: 100
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Python bindings for whisper.cpp
===============================---
`pip install git+https://github.com/stlukey/whispercpp.py````python
from whispercpp import Whisperw = Whisper('tiny')
result = w.transcribe("myfile.mp3")
text = w.extract_text(result)
```Note: default parameters might need to be tweaked.
See Whispercpp.pyx.