Update requirements.txt
Browse files- requirements.txt +14 -16
requirements.txt
CHANGED
@@ -1,16 +1,14 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
moviepy==2.1.2
|
16 |
-
TTS==0.22.0 # or git+https://github.com/coqui-ai/TTS.git
|
|
|
1 |
+
# Core compatibility
|
2 |
+
numpy==1.22.0
|
3 |
+
# Coqui TTS (XTTS v2)
|
4 |
+
TTS==0.22.0
|
5 |
+
torch==2.0.1 # Or the version best suited for your GPU/CPU
|
6 |
+
# Video Processing
|
7 |
+
moviepy==1.0.3
|
8 |
+
# Web Interface
|
9 |
+
gradio==4.21.0 # Safe, modern and compatible with TTS
|
10 |
+
# Audio Utilities (optional but often used)
|
11 |
+
soundfile
|
12 |
+
librosa
|
13 |
+
# For logging and debugging
|
14 |
+
loguru
|
|
|
|