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

I ran tests\minimalistic_talkbot.py RealTimeSTT 0.1.8 RealTimeTTS 0.3.4 openai 1.6.0 I got this error: RealTimeSTT: root - WARNING - error in play() with engine azure: You tried to access openai.ChatCompletion, but...

Which languages are supported?

I was just trying to create a web app and wanted to modify this to use it to a web app like from JS. Is there a sample?

First, thanks for creating a fantastic project! I was looking for a way to run Whisper or some other speech-to-text model in realtime. I found several potential solutions but this...

Impressive work - do you have any insight on applying the same methodology for TTS?

Hi there, I've been desperate to try your script after I saw it on reddit (we had a brief chat), but I can't for the life of me figure out...

Here's a docker setup for the web demo using the latest CUDA 12.4 with CuDNN 8. Needs additional testing of all features if we are going to go with the...

I want to get the language code that the user speaks (en, de ..etc), Can we detect the language code after the user speaks?

Hi, I’m currently using RealtimeSTT with the following configuration: ``` recorder_config = { 'spinner': False, 'model': 'large-v2', 'language': 'en', 'silero_sensitivity': 0.3, 'webrtc_sensitivity': 1, 'post_speech_silence_duration': 0.6, 'min_length_of_recording': 0, 'min_gap_between_recordings': 0, 'enable_realtime_transcription':...

Code: ``` from RealtimeSTT import AudioToTextRecorder with AudioToTextRecorder() as recorder: print(recorder.text()) ``` Current behaviour: ``` [2024-08-05 11:02:28.712] [ctranslate2] [thread 705146] [warning] The compute type inferred from the saved model is...