Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stlukey/whispercpp.py
Python bindings for whisper.cpp
https://github.com/stlukey/whispercpp.py
Last synced: 3 months 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-28T19:31:15.000Z (8 months ago)
- Last Synced: 2024-05-29T08:10:45.910Z (6 months ago)
- Language: Python
- Size: 47.9 KB
- Stars: 197
- Watchers: 4
- Forks: 94
- 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.