faster-whisper-server / docs /usage /live-transcription.md
Fedir Zadniprovskyi
docs: usage pages (and more)
b56d19a
|
raw
history blame
560 Bytes
## Live Transcription (using WebSocket)
!!! note
More content will be added here soon.
TODO: fix link
From [live-audio](./examples/live-audio) example
https://github.com/fedirz/faster-whisper-server/assets/76551385/e334c124-af61-41d4-839c-874be150598f
[websocat](https://github.com/vi/websocat?tab=readme-ov-file#installation) installation is required.
Live transcription of audio data from a microphone.
```bash
ffmpeg -loglevel quiet -f alsa -i default -ac 1 -ar 16000 -f s16le - | websocat --binary ws://localhost:8000/v1/audio/transcriptions
```