Princeaka commited on
Commit
3745ff3
·
verified ·
1 Parent(s): d755610

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +60 -1
requirements.txt CHANGED
@@ -1 +1,60 @@
1
- moviepy>=1.0.3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # =========================
2
+ # Core ML & Hugging Face
3
+ # =========================
4
+ transformers>=4.30.0
5
+ diffusers>=0.19.0
6
+ accelerate>=0.20.0
7
+ huggingface-hub>=0.13.0
8
+ safetensors
9
+
10
+ # =========================
11
+ # Torch (CPU-safe; HF picks correct wheel)
12
+ # =========================
13
+ torch>=2.0.0
14
+ torchvision>=0.15.0
15
+ torchaudio>=2.0.0
16
+
17
+ # =========================
18
+ # Gradio UI & web server
19
+ # =========================
20
+ gradio>=3.35.0
21
+ fastapi>=0.95.0
22
+ uvicorn>=0.22.0
23
+ python-multipart>=0.0.6
24
+
25
+ # =========================
26
+ # Audio Processing
27
+ # =========================
28
+ librosa>=0.10.0
29
+ soundfile>=0.12.1
30
+ SpeechRecognition>=3.10.0
31
+ gTTS>=2.3.2
32
+ webrtcvad>=2.0.10
33
+ pydub>=0.25.1
34
+
35
+ # =========================
36
+ # Image & Video Processing
37
+ # =========================
38
+ Pillow>=9.5.0
39
+ opencv-python-headless>=4.7.0
40
+ imageio>=2.31.1
41
+ imageio-ffmpeg>=0.4.8
42
+ moviepy>=2.2.1
43
+
44
+ # =========================
45
+ # Document Processing
46
+ # =========================
47
+ pymupdf>=1.22.0
48
+ python-docx>=0.8.11
49
+ pdf2image>=1.16.0
50
+
51
+ # =========================
52
+ # Utilities & NLP helpers
53
+ # =========================
54
+ numpy>=1.24.0
55
+ tqdm
56
+ langdetect
57
+ protobuf>=3.20.0
58
+ sentencepiece
59
+ tokenizers
60
+ requests