Update app.py
Browse files
app.py
CHANGED
|
@@ -173,7 +173,7 @@ def transcribe_video_with_speakers(video_path):
|
|
| 173 |
logger.info("WhisperX model loaded")
|
| 174 |
|
| 175 |
# Transcribe
|
| 176 |
-
result = model.transcribe(audio_path, chunk_size=
|
| 177 |
logger.info("Audio transcription completed")
|
| 178 |
|
| 179 |
# Get the detected language
|
|
|
|
| 173 |
logger.info("WhisperX model loaded")
|
| 174 |
|
| 175 |
# Transcribe
|
| 176 |
+
result = model.transcribe(audio_path, chunk_size=6, print_progress = True)
|
| 177 |
logger.info("Audio transcription completed")
|
| 178 |
|
| 179 |
# Get the detected language
|