Mbonea commited on
Commit
5fdc6a1
1 Parent(s): 5b8a285

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.text,
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.."