niks1419 commited on
Commit
52a2768
·
verified ·
1 Parent(s): 9ad2a14

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +36 -0
requirements.txt ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ numpy<2.0
3
+ scipy
4
+ soundfile==0.12.1
5
+ librosa==0.10.1
6
+ noisereduce==3.0.0
7
+ scikit-learn>=1.3.0
8
+ moviepy==1.0.3
9
+
10
+
11
+ # Audio & video
12
+ moviepy
13
+ ffmpeg-python
14
+
15
+ # Speech models
16
+ torch==2.2.0
17
+ torchaudio==2.2.0
18
+ pyannote.audio
19
+ speechbrain
20
+
21
+ # Pyannote for diarization
22
+ pyannote.audio==3.3.1
23
+ pyannote.core
24
+ huggingface_hub
25
+
26
+ # SpeechBrain for separation and enhancement
27
+ speechbrain>=1.0.0
28
+
29
+ # Whisper (OpenAI)
30
+ openai-whisper>=20231117
31
+
32
+ # Web app
33
+ gradio
34
+
35
+ # Misc
36
+ tqdm>=4.66.0