Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +21 -12
requirements.txt
CHANGED
@@ -1,14 +1,23 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
TTS
|
|
|
|
|
8 |
|
9 |
-
|
10 |
-
|
|
|
11 |
|
12 |
-
|
13 |
-
requests
|
14 |
-
python-dotenv
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core requirements with version constraints to avoid conflicts
|
2 |
+
gradio
|
3 |
+
assemblyai
|
4 |
+
deep-translator
|
5 |
+
pysrt
|
6 |
+
tqdm
|
7 |
+
numpy # Pinned to version compatible with TTS
|
8 |
+
torch
|
9 |
+
TTS
|
10 |
|
11 |
+
# Audio/Video processing
|
12 |
+
ffmpeg-python
|
13 |
+
pydub
|
14 |
|
15 |
+
# Additional utilities
|
16 |
+
requests
|
17 |
+
python-dotenv
|
18 |
+
|
19 |
+
# Explicit dependencies that might be needed
|
20 |
+
soundfile
|
21 |
+
librosa
|
22 |
+
scipy
|
23 |
+
cython
|