RealtimeSTT icon indicating copy to clipboard operation
RealtimeSTT copied to clipboard

A robust, efficient, low-latency speech-to-text library with advanced voice activity detection, wake word activation and instant transcription.

Results 118 RealtimeSTT issues
Sort by recently updated
recently updated
newest added

``` usr_40476@localhost:~/Downloads> pipx install *.whl Note: Dependent package 'av' contains 1 apps - pyav Note: Dependent package 'ctranslate2' contains 7 apps - ct2-fairseq-converter - ct2-marian-converter - ct2-openai-gpt2-converter - ct2-opennmt-py-converter -...

Hi! While I was trying to develop a PR for the shutdown lockup issue, I noticed that the recent commits on master broke model initialization: ``` RealTimeSTT: root - ERROR...

Is it possible to get this data. I am trying to drive a video that has Phonemes at certain position. eg oo (3.4sec-4.1sec). The idea is to drive (skip) the...

Adding this will prevent crash loops. ` RealTimeSTT: root - ERROR - Error during recording: [Errno -9988] Stream closed RealTimeSTT: root - ERROR - Error during recording: [Errno -9988] Stream...

from faster_whisper import WhisperModel, BatchedInferencePipeline model = WhisperModel("medium", device="cuda", compute_type="float16") batched_model = BatchedInferencePipeline(model=model) Batched version improves the speed upto 10-12x compared to openAI implementation and 3-4x compared to the sequential...

Updated to 0.2.0 and now getting this error. Tried reinstalling. I'm confused, doesn't look like there is an error to me. From pip, python 3.9.19 ``` File "C:\Users\USERNAME\AgentComms\combined_server.py", line 20,...

I have installed the RealtimeSTT but when running a few of the test files, it gave this error: `RuntimeError: It looks like there is no internet connection and the repo...

There is a significant demand in China for the utilization of GPT-SoVITS. Do you have any plans to incorporate the GPT-SoVITS model into your project?

I ran the following snippet to initialize the recorder: ``` from RealtimeSTT import AudioToTextRecorder recorder_config = { 'spinner': False, 'model': 'large-v2', 'language': 'en', 'silero_sensitivity': 0.4, 'webrtc_sensitivity': 2, 'post_speech_silence_duration': 0.4, 'min_length_of_recording':...