Spaces:
Running
Running
IZERE HIRWA Roger
commited on
Commit
·
8593edd
1
Parent(s):
a1320d8
- requirements.txt +27 -0
requirements.txt
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
Flask==2.3.2
|
3 |
+
gTTS==2.3.2
|
4 |
+
ffmpeg-python==0.2.0
|
5 |
+
numpy==1.24.3
|
6 |
+
torch==2.0.1+cpu --extra-index-url https://download.pytorch.org/whl/cpu
|
7 |
+
torchvision==0.15.2+cpu --extra-index-url https://download.pytorch.org/whl/cpu
|
8 |
+
|
9 |
+
# SadTalker dependencies
|
10 |
+
face-alignment==1.3.5
|
11 |
+
librosa==0.9.2
|
12 |
+
scipy==1.10.1
|
13 |
+
opencv-python==4.7.0.72
|
14 |
+
tqdm==4.65.0
|
15 |
+
scikit-image==0.20.0
|
16 |
+
pyyaml==6.0
|
17 |
+
matplotlib==3.7.1
|
18 |
+
|
19 |
+
# Audio processing
|
20 |
+
pydub==0.25.1
|
21 |
+
soundfile==0.12.1
|
22 |
+
|
23 |
+
# Optional (for enhanced TTS)
|
24 |
+
# piper-tts==1.0.0 # Uncomment for offline TTS
|
25 |
+
|
26 |
+
# Development extras
|
27 |
+
python-dotenv==1.0.0
|