Releases: KoljaB/RealtimeSTT
Releases · KoljaB/RealtimeSTT
v0.1.13
- added beam_size: int = 5 and beam_size_realtime: int = 3 parameters to AudioToTextRecorder constructor allowing faster (realtime) transcriptions by lowering the beamsizes
- added last_transcription_bytes containing the raw bytes from the last transcription
You can retrieve those bytes with recorder.last_transcription_bytes for further analysis, saving to file etc
v0.1.12
- fixed qsize issue for macOS
- upgrade requirements to torch 2.2.2
v0.1.11
v0.1.9
v0.1.8
Bugfixes and KeyboardInterrupt support
- Bugfix for Mac OS Installation (occured int the context of multiprocessing with the usage of queue.size(), changed to use multiprocessing.Manager().Queue() which should work under Mac)
- KeyboardInterrupt handling (we can now abort the recorder with CTRL+C)
- Bugfix for spinner handling (could lead to exception in some cases, AttributeError: 'NoneType' object has no attribute '_interval')
v0.1.6
v0.1.5
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.
Initial Release
v0.1.3 updated versions in batchfiles of example apP