Spaces:
Build error
Build error
Create requiements.txt
Browse files- requiements.txt +22 -0
requiements.txt
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Video processing and audio handling
|
2 |
+
moviepy==1.0.3 # Video editing and audio processing
|
3 |
+
pydub==0.25.1 # Audio manipulation
|
4 |
+
|
5 |
+
# Voice and music separation
|
6 |
+
spleeter==2.3.2 # Music and vocal separation
|
7 |
+
|
8 |
+
# Speech recognition and translation
|
9 |
+
whisper==20220323 # Whisper speech recognition model
|
10 |
+
transformers==4.32.1 # For Hugging Face models
|
11 |
+
torch==1.12.1 # PyTorch backend for Whisper and other models
|
12 |
+
|
13 |
+
# Text-to-speech and voice cloning
|
14 |
+
xtts==1.0.0 # X-TTS for voice cloning (replace with actual package name)
|
15 |
+
# Depending on the specific model you use for singing synthesis, you might need additional dependencies
|
16 |
+
|
17 |
+
# Libraries for managing audio types
|
18 |
+
librosa==0.10.0 # For audio analysis and manipulation
|
19 |
+
scikit-learn==1.1.3 # For any machine learning-based audio classification
|
20 |
+
|
21 |
+
# Gradio for creating the interface
|
22 |
+
gradio==3.23.0 # For building the web interface
|