Create requirements.txt
Browse files- requirements.txt +26 -0
requirements.txt
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core Audio Processing Dependencies
|
2 |
+
librosa>=0.10.0
|
3 |
+
soundfile>=0.12.1
|
4 |
+
numpy>=1.21.0
|
5 |
+
scipy>=1.9.0
|
6 |
+
|
7 |
+
# Spleeter and ML Dependencies
|
8 |
+
spleeter>=2.3.0
|
9 |
+
tensorflow>=2.10.0,<2.14.0
|
10 |
+
protobuf>=3.20.0,<4.0.0
|
11 |
+
|
12 |
+
# Style Coaching Dependencies
|
13 |
+
dtw-python>=1.3.0
|
14 |
+
|
15 |
+
# Visualization and Analysis
|
16 |
+
matplotlib>=3.5.0
|
17 |
+
|
18 |
+
# Audio format support and codecs
|
19 |
+
ffmpeg-python>=0.2.0
|
20 |
+
|
21 |
+
# Additional audio processing libraries
|
22 |
+
resampy>=0.4.0
|
23 |
+
audioread>=3.0.0
|
24 |
+
|
25 |
+
# Performance optimization
|
26 |
+
numba>=0.56.0
|