Spaces:
Configuration error
Configuration error
KrishCode
commited on
Commit
·
5783d42
1
Parent(s):
95dc73c
Update README.md
Browse filesFixed mistakes and typos
README.md
CHANGED
@@ -80,13 +80,13 @@ curl http://localhost:8000/v1/audio/transcriptions -F "[email protected]" -F "lang
|
|
80 |
curl http://localhost:8000/v1/audio/translations -F "[email protected]"
|
81 |
```
|
82 |
|
83 |
-
### Live Transcription (using
|
84 |
From [live-audio](./examples/live-audio) example
|
85 |
|
86 |
https://github.com/fedirz/faster-whisper-server/assets/76551385/e334c124-af61-41d4-839c-874be150598f
|
87 |
|
88 |
[websocat](https://github.com/vi/websocat?tab=readme-ov-file#installation) installation is required.
|
89 |
-
Live
|
90 |
```bash
|
91 |
ffmpeg -loglevel quiet -f alsa -i default -ac 1 -ar 16000 -f s16le - | websocat --binary ws://localhost:8000/v1/audio/transcriptions
|
92 |
```
|
|
|
80 |
curl http://localhost:8000/v1/audio/translations -F "[email protected]"
|
81 |
```
|
82 |
|
83 |
+
### Live Transcription (using WebSocket)
|
84 |
From [live-audio](./examples/live-audio) example
|
85 |
|
86 |
https://github.com/fedirz/faster-whisper-server/assets/76551385/e334c124-af61-41d4-839c-874be150598f
|
87 |
|
88 |
[websocat](https://github.com/vi/websocat?tab=readme-ov-file#installation) installation is required.
|
89 |
+
Live transcription of audio data from a microphone.
|
90 |
```bash
|
91 |
ffmpeg -loglevel quiet -f alsa -i default -ac 1 -ar 16000 -f s16le - | websocat --binary ws://localhost:8000/v1/audio/transcriptions
|
92 |
```
|