feat: parameterize min silence duration and increase default to 1000ms

This commit is contained in:
Adolfo Reyna
2026-02-28 19:40:23 -05:00
parent 81cea12e0c
commit 018539d41b
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -59,6 +59,7 @@ Run the script using `python3 transcribe.py` with optional flags.
- `-s`, `--stream`: Enable real-time streaming transcription/draft mode (Strategy 1).
- `-c`, `--context`: Enable prompt caching/rolling context to help the model maintain sentence continuity across chunks.
- `--lang [CODE]`: Hardcode the source language (e.g., `en`, `es`) to bypass automatic language detection for faster processing.
- `--silence [MS]`: Set the minimum silence duration in milliseconds to end a chunk. Defaults to 1000ms. Increase to force longer sentences before translation.
---