Update requirements.txt
Browse files- requirements.txt +38 -6
requirements.txt
CHANGED
@@ -1,9 +1,41 @@
|
|
|
|
|
|
|
|
1 |
pip==22.2.2
|
|
|
|
|
2 |
gradio==3.0.24
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
5 |
moviepy==1.0.3
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Project Dependencies
|
2 |
+
|
3 |
+
# Core package management
|
4 |
pip==22.2.2
|
5 |
+
|
6 |
+
# Web Application Framework
|
7 |
gradio==3.0.24
|
8 |
+
|
9 |
+
# Translation Library (Fork - googletransx)
|
10 |
+
googletransx==2.4.2
|
11 |
+
|
12 |
+
# Video Editing
|
13 |
moviepy==1.0.3
|
14 |
+
|
15 |
+
# Speech Recognition
|
16 |
+
SpeechRecognition==3.10.1
|
17 |
+
|
18 |
+
# Text-to-Speech
|
19 |
+
gTTS==2.5.2
|
20 |
+
|
21 |
+
# YouTube Transcript API
|
22 |
+
youtube_transcript_api==0.6.2
|
23 |
+
|
24 |
+
# YouTube Download
|
25 |
+
pytube==15.0.0
|
26 |
+
|
27 |
+
# Additional dependencies required by googletransx and its related packages
|
28 |
+
httpx==0.27.0
|
29 |
+
httpcore==0.14.7
|
30 |
+
h2==4.1.0
|
31 |
+
h11==0.14.0
|
32 |
+
sniffio==1.3.0
|
33 |
+
certifi
|
34 |
+
chardet==4.0.0
|
35 |
+
idna==3.6
|
36 |
+
requests==2.31.0
|
37 |
+
urllib3==2.0.7
|
38 |
+
rfc3986==1.5.0
|
39 |
+
PySocks==1.7.1
|
40 |
+
Deprecated==1.2.14
|
41 |
+
wrapt==1.16.0
|