SuriRaja commited on
Commit
6f706d4
·
verified ·
1 Parent(s): 5cbaf6a

Update requirements.txt

Browse files

The 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

Files changed (1) hide show
  1. requirements.txt +1 -1
requirements.txt CHANGED
@@ -2,5 +2,5 @@ transformers
2
  torch
3
  gradio
4
  moviepy
5
- pyttsx3
6
  diffusers
 
2
  torch
3
  gradio
4
  moviepy
5
+ gtts
6
  diffusers