Update requirements.txt
Browse files- requirements.txt +5 -3
requirements.txt
CHANGED
@@ -1,14 +1,16 @@
|
|
|
|
1 |
openai-whisper
|
2 |
-
sentencepiece==0.1.99
|
3 |
SpeechRecognition
|
4 |
youtube_transcript_api
|
5 |
nltk
|
6 |
textblob
|
7 |
-
gradio
|
8 |
transformers
|
9 |
openai
|
10 |
ffmpy
|
11 |
whisperx
|
12 |
torch==2.5.1
|
|
|
13 |
moviepy==2.1.2
|
14 |
-
TTS
|
|
|
1 |
+
--prefer-binary
|
2 |
openai-whisper
|
3 |
+
sentencepiece==0.1.99
|
4 |
SpeechRecognition
|
5 |
youtube_transcript_api
|
6 |
nltk
|
7 |
textblob
|
8 |
+
gradio>=4.0.0 # Ensure modern Gradio version
|
9 |
transformers
|
10 |
openai
|
11 |
ffmpy
|
12 |
whisperx
|
13 |
torch==2.5.1
|
14 |
+
torchaudio==2.5.1 # Critical pairing with torch
|
15 |
moviepy==2.1.2
|
16 |
+
TTS==0.22.0 # or git+https://github.com/coqui-ai/TTS.git
|