Nishur commited on
Commit
68acba2
·
verified ·
1 Parent(s): b5fa929

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +21 -12
requirements.txt CHANGED
@@ -1,14 +1,23 @@
1
- gradio>=3.0.0
2
- assemblyai>=0.15.0
3
- deep-translator>=1.11.0
4
- pysrt>=1.1.2
5
- tqdm>=4.65.0
6
- torch>=2.0.0
7
- TTS>=0.21.0
 
 
8
 
9
- ffmpeg-python>=0.2.0
10
- pydub>=0.25.1
 
11
 
12
- numpy>=1.23.0
13
- requests>=2.28.0
14
- python-dotenv>=0.21.0
 
 
 
 
 
 
 
1
+ # Core requirements with version constraints to avoid conflicts
2
+ gradio
3
+ assemblyai
4
+ deep-translator
5
+ pysrt
6
+ tqdm
7
+ numpy # Pinned to version compatible with TTS
8
+ torch
9
+ TTS
10
 
11
+ # Audio/Video processing
12
+ ffmpeg-python
13
+ pydub
14
 
15
+ # Additional utilities
16
+ requests
17
+ python-dotenv
18
+
19
+ # Explicit dependencies that might be needed
20
+ soundfile
21
+ librosa
22
+ scipy
23
+ cython