Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +12 -1
requirements.txt
CHANGED
@@ -3,5 +3,16 @@ gradio_client==1.1.0 # Ensures compatibility with Gradio API
|
|
3 |
TTS==0.22.0
|
4 |
torch==2.3.0
|
5 |
pydantic==2.10.6
|
6 |
-
transformers==4.49.0
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
TTS==0.22.0
|
4 |
torch==2.3.0
|
5 |
pydantic==2.10.6
|
6 |
+
transformers==4.49.0
|
7 |
|
8 |
+
# ✅ Audio Processing Essentials
|
9 |
+
ffmpeg # Required for MP3 decoding and conversion
|
10 |
+
soundfile # Ensures proper audio file handling
|
11 |
+
pydub==0.25.1 # Handles MP3-to-WAV conversion
|
12 |
+
|
13 |
+
# ✅ Performance Optimization
|
14 |
+
accelerate==0.24.1 # Speeds up model execution
|
15 |
+
scipy # Lightweight dependency required for some deep-learning libraries
|
16 |
+
|
17 |
+
# ✅ Fixes for Librosa Issues
|
18 |
+
librosa==0.9.2 # Prevents deprecated warnings in librosa 0.10+
|