Update app.py
Browse files
app.py
CHANGED
|
@@ -8,7 +8,11 @@ import sys
|
|
| 8 |
from whisper_audio_transcriber import transcribe_audio, guardar_transcripcion
|
| 9 |
from call_openai_api import moni as rtff
|
| 10 |
|
|
|
|
|
|
|
|
|
|
| 11 |
# Rutas
|
|
|
|
| 12 |
AUDIO_RECORD_PATH = os.path.abspath("./assets/audio/grabacion_gradio.wav")
|
| 13 |
VIDEO_PATH = os.path.abspath("./assets/video/data_video_sun.mp4")
|
| 14 |
TRANSCRIPTION_TEXT_PATH = os.path.abspath("./results/transcripcion.txt")
|
|
|
|
| 8 |
from whisper_audio_transcriber import transcribe_audio, guardar_transcripcion
|
| 9 |
from call_openai_api import moni as rtff
|
| 10 |
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
|
| 14 |
# Rutas
|
| 15 |
+
sys.path.append(os.path.abspath("./src"))
|
| 16 |
AUDIO_RECORD_PATH = os.path.abspath("./assets/audio/grabacion_gradio.wav")
|
| 17 |
VIDEO_PATH = os.path.abspath("./assets/video/data_video_sun.mp4")
|
| 18 |
TRANSCRIPTION_TEXT_PATH = os.path.abspath("./results/transcripcion.txt")
|