Spaces:
Paused
Paused
Update requirements.txt
Browse filesThe error indicates that pyttsx3 is trying to use the eSpeak speech synthesizer, but it can't find the libespeak.so.1 library. This is a common issue when running on systems that don't have eSpeak installed. As a solution, we can use an alternative text-to-speech library that doesn't have this dependency, such as gTTS (Google Text-to-Speech). Updated gTTS
- requirements.txt +1 -1
requirements.txt
CHANGED
|
@@ -2,5 +2,5 @@ transformers
|
|
| 2 |
torch
|
| 3 |
gradio
|
| 4 |
moviepy
|
| 5 |
-
|
| 6 |
diffusers
|
|
|
|
| 2 |
torch
|
| 3 |
gradio
|
| 4 |
moviepy
|
| 5 |
+
gtts
|
| 6 |
diffusers
|