Nim Sadeh

Results 22 comments of Nim Sadeh

> I thought about how far I want to develop each of my projects. For both RealtimeSTT and RealtimeTTS I want to provide a comfortable and stable webserver solution that...

@KoljaB I changed the `shutdown` method to the following: ```python def shutdown(self): # self.recorder_active.clear() self.recorder.feed_audio(b'AAAAAAAAAAA') self.recorder.shutdown() # self.processor.join() self.loop.call_soon_threadsafe(self.loop.stop) ``` And it still hangs on recorder.shutdown(). The strange thing is,...