v0.1.5
KoljaB/RealtimeSTTv0.1.5Oct 4, 2023by KoljaB
AI Summary
Addresses a bug where short speech segments caused overlapping detection issues leading to Python GIL problems. The fix involves an upgrade to multiprocessing to resolve these conflicts within the same process context.
Key Highlights
- Fixed bug with short speech detection overlapping with sentence detection
- Resolved Python GIL issues caused by overlapping audio processing
- Implemented multiprocessing upgrade to fix the problem
New Features
- Bugfix for speech detection
Full Release Notes
Bugfix for a problem with the detection of short speech right after a sentence detection. In this case the voice activity detection of the new sentence overlaps with the transcription of the last sentence causing problems due to the pythons global interpreter lock mechanism. This only happens when this overlapping occurs within the same process context so that this multiprocessing upgrade should solve the issue.