Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +16 -9
requirements.txt
CHANGED
@@ -1,15 +1,22 @@
|
|
1 |
-
|
2 |
moviepy>=1.0.3
|
3 |
-
|
4 |
-
requests>=2.28.0
|
5 |
pydub>=0.25.0
|
6 |
-
|
|
|
|
|
|
|
|
|
7 |
kokoro>=0.3.4
|
|
|
8 |
soundfile>=0.12.0
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
12 |
numpy>=1.20.0
|
13 |
beautifulsoup4>=4.10.0
|
14 |
-
|
15 |
-
|
|
|
|
1 |
+
# Core video/audio processing
|
2 |
moviepy>=1.0.3
|
3 |
+
ffmpeg-python # Often helpful alongside moviepy, though not strictly required by your code yet
|
|
|
4 |
pydub>=0.25.0
|
5 |
+
opencv-python>=4.5.0
|
6 |
+
|
7 |
+
# AI / ML / TTS
|
8 |
+
transformers>=4.30.0
|
9 |
+
torch>=2.0.0 # Consider specific version if needed (e.g., torch==2.1.0+cpu)
|
10 |
kokoro>=0.3.4
|
11 |
+
gTTS>=2.3.0
|
12 |
soundfile>=0.12.0
|
13 |
+
|
14 |
+
# Web/API/Utilities
|
15 |
+
gradio>=4.0.0
|
16 |
+
requests>=2.28.0
|
17 |
+
Pillow>=9.0.0
|
18 |
numpy>=1.20.0
|
19 |
beautifulsoup4>=4.10.0
|
20 |
+
pysrt>=1.1.0
|
21 |
+
|
22 |
+
# Add any other specific libraries you might need
|