Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +29 -11
requirements.txt
CHANGED
|
@@ -1,12 +1,30 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
pandas
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
|
|
|
|
|
| 1 |
+
# requirements.txt
|
| 2 |
+
|
| 3 |
+
# Web Framework
|
| 4 |
+
gradio
|
| 5 |
+
|
| 6 |
+
# Core Video & Audio
|
| 7 |
+
moviepy>=1.0.3
|
| 8 |
+
imageio_ffmpeg
|
| 9 |
+
pydub>=0.25.1
|
| 10 |
+
srt>=3.5.0
|
| 11 |
+
|
| 12 |
+
# AI & ML Libraries
|
| 13 |
+
openai-whisper==20231117
|
| 14 |
+
openai>=1.26.0
|
| 15 |
+
torch
|
| 16 |
+
elevenlabs==0.2.24
|
| 17 |
+
|
| 18 |
+
# Data & Utilities
|
| 19 |
pandas
|
| 20 |
+
tabulate # <-- Added this for the .to_markdown() function
|
| 21 |
+
numpy>=1.26.4
|
| 22 |
+
Pillow>=10.3.0
|
| 23 |
+
requests>=2.32.0
|
| 24 |
+
python-dotenv>=1.0.1
|
| 25 |
+
tqdm>=4.66.2
|
| 26 |
+
|
| 27 |
+
# Other libraries from your previous setup (can be added if needed)
|
| 28 |
+
# deep-translator>=1.11.4
|
| 29 |
+
# httpx==0.27.0
|
| 30 |
+
# scipy>=1.12.0
|