Update requirements.txt
Browse files- requirements.txt +15 -10
requirements.txt
CHANGED
|
@@ -1,28 +1,33 @@
|
|
| 1 |
-
# Requirements
|
| 2 |
-
# Este archivo
|
| 3 |
|
| 4 |
# === CORE DEPENDENCIES ===
|
| 5 |
gradio>=4.0.0
|
|
|
|
|
|
|
| 6 |
torch>=2.0.0
|
| 7 |
transformers>=4.30.0
|
|
|
|
|
|
|
| 8 |
moviepy==1.0.3
|
|
|
|
|
|
|
| 9 |
langdetect>=1.0.9
|
| 10 |
|
| 11 |
-
# === CURL-CFFI (CR脥TICO) ===
|
| 12 |
curl-cffi>=0.5.10
|
| 13 |
|
| 14 |
-
# === YT-DLP ===
|
| 15 |
-
#
|
| 16 |
|
| 17 |
-
# === WHISPER ===
|
| 18 |
insanely-fast-whisper
|
| 19 |
openai-whisper
|
| 20 |
|
| 21 |
-
# === AUDIO
|
| 22 |
librosa>=0.10.0
|
| 23 |
soundfile>=0.12.0
|
| 24 |
|
| 25 |
-
# === UTILITIES ===
|
| 26 |
requests>=2.32.0
|
| 27 |
-
certifi>=2024.6.2
|
| 28 |
-
brotli>=1.1.0
|
|
|
|
| 1 |
+
# Requirements para la versi贸n funcional basada en Streamlit exitoso
|
| 2 |
+
# Este archivo incluye solo las dependencias necesarias para que funcione
|
| 3 |
|
| 4 |
# === CORE DEPENDENCIES ===
|
| 5 |
gradio>=4.0.0
|
| 6 |
+
|
| 7 |
+
# === MACHINE LEARNING ===
|
| 8 |
torch>=2.0.0
|
| 9 |
transformers>=4.30.0
|
| 10 |
+
|
| 11 |
+
# === VIDEO/AUDIO PROCESSING ===
|
| 12 |
moviepy==1.0.3
|
| 13 |
+
|
| 14 |
+
# === LANGUAGE DETECTION ===
|
| 15 |
langdetect>=1.0.9
|
| 16 |
|
| 17 |
+
# === CURL-CFFI (CR脥TICO para impersonation chrome120) ===
|
| 18 |
curl-cffi>=0.5.10
|
| 19 |
|
| 20 |
+
# === YT-DLP (se instala en Dockerfile con curl-cffi) ===
|
| 21 |
+
# yt-dlp[default,curl-cffi] - instalado en Dockerfile
|
| 22 |
|
| 23 |
+
# === WHISPER TRANSCRIPTION ===
|
| 24 |
insanely-fast-whisper
|
| 25 |
openai-whisper
|
| 26 |
|
| 27 |
+
# === AUDIO DEPENDENCIES ===
|
| 28 |
librosa>=0.10.0
|
| 29 |
soundfile>=0.12.0
|
| 30 |
|
| 31 |
+
# === BASIC UTILITIES ===
|
| 32 |
requests>=2.32.0
|
| 33 |
+
certifi>=2024.6.2
|
|
|