Kolja Beigel
Kolja Beigel
Just leave out step 2 of installation. I think coqui engine does not run in realtime on a Mac though.
Python import of llama_cpp fails, that means your environment does not have working python bindings for your llama.cpp. Please look [here](https://github.com/abetlen/llama-cpp-python) for Mac bindings, probably Metal (MPS).
This is a good idea, thank you very much for this great input. Will integrate it in the next release.
Hey there, thanks a lot for reporting that issue. It is [quite much all pyttsx3 related](https://github.com/nateshmbhat/pyttsx3/issues/248) and a fix for this is out of scope for RealtimeTTS. I think I...
Oh, sorry - this demo code might be misleading. You either need to write: ```python stream.play_async() while stream.is_playing(): time.sleep(0.1) ``` Or this: ```python stream.play() ```
Hm, never saw this one so far. Googled it but no idea currently. What happens if you run this basic pyttsx3 test without RealtimeTTS? ```python import pyttsx3 engine = pyttsx3.init()...
I'm lost with this one, I have to admit. RealtimeTTS would split the input text into sentences and then loop ```python self.engine.save_to_file(text, self.file_path) self.engine.runAndWait() ``` for every sentence. Unsure what...
Yes, quite likely this project would benefit from removing most threads and processes and switching completely to asyncio, same goes for RealtimeSTT. It will be hard to implement since some...
It's planned but not sure when I get to implement this.
Hey there. On Mac pls try: ```python brew install portaudio pip install pyaudio ``` On Linux/Unix-like systems pls try: ```python sudo apt-get install portaudio19-dev pip install pyaudio ``` If that...