simple fix
Browse files
App/Transcription/Utils/audio_transcription.py
CHANGED
@@ -39,7 +39,7 @@ def transcribe_file(state, file_path, model_size="tiny"):
|
|
39 |
temp = {
|
40 |
"start": word.start,
|
41 |
"end": word.end,
|
42 |
-
"text": word.
|
43 |
}
|
44 |
result.append(temp)
|
45 |
metadata.logs = "Transcribing.."
|
|
|
39 |
temp = {
|
40 |
"start": word.start,
|
41 |
"end": word.end,
|
42 |
+
"text": word.word,
|
43 |
}
|
44 |
result.append(temp)
|
45 |
metadata.logs = "Transcribing.."
|