feat: implement streaming mode (-s) and 4-bit quantization (-q) for performance

This commit is contained in:
Adolfo Reyna
2026-02-28 19:00:56 -05:00
parent 3c874c113c
commit 6f60d49c7b
2 changed files with 24 additions and 0 deletions
+2
View File
@@ -55,6 +55,8 @@ Run the script using `python3 transcribe.py` with optional flags.
- `-i`, `--ingest`: Enable data transmission to the remote server.
- `-l`, `--list-devices`: Show available audio devices and exit.
- `-d`, `--device [ID]`: Input device index (bypasses selection prompt).
- `-q`, `--quantize`: Use 4-bit quantized Whisper model for faster transcription (Strategy 3).
- `-s`, `--stream`: Enable real-time streaming transcription/draft mode (Strategy 1).
---