Spaces:
Build error
Build error
Update README.md
Browse files
README.md
CHANGED
@@ -10,4 +10,19 @@ pinned: false
|
|
10 |
license: apache-2.0
|
11 |
---
|
12 |
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
license: apache-2.0
|
11 |
---
|
12 |
|
13 |
+
The near-continuous speech recognition demo using [OpenAI whisper](https://github.com/openai/whisper), built using [Gradio](https://gradio.app/).
|
14 |
+
|
15 |
+
### How to run?
|
16 |
+
Install openai/whisper
|
17 |
+
|
18 |
+
pip install git+https://github.com/openai/whisper.git
|
19 |
+
|
20 |
+
Start the Gradio app
|
21 |
+
|
22 |
+
python whisper_demo.py
|
23 |
+
|
24 |
+
### Simple Notes
|
25 |
+
1. The near-continuous recognition is implemented by incrementally recognizing all historical audio streaming every N seconds. The config is `REC_INTERVAL_IN_SECONDS`
|
26 |
+
|
27 |
+
2. The near-continuous recognition is in fact quite broken(slow) and only used for demo purpose. You should try a web socket way for real time recognition by referring to https://github.com/shirayu/whispering
|
28 |
+
|