From 107b4d5e3d0dc00f50ed7e314dfc409517b3e237 Mon Sep 17 00:00:00 2001 From: Luke Southam Date: Sun, 11 Dec 2022 09:14:04 +0000 Subject: [PATCH] Update README --- README | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README b/README index 6b827cf..73212c6 100644 --- a/README +++ b/README @@ -1,4 +1,13 @@ 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) +```