Updated readme

This commit is contained in:
John Ryan 2023-08-14 14:21:52 +01:00
parent 4338423833
commit 439d49d16d
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ from whispercpp import Whisper
w = Whisper('tiny') w = Whisper('tiny')
result = w.transcribe("myfile.mp3") result = w.transcribe("myfile.mp3", lang="en")
text = w.extract_text(result) text = w.extract_text(result)
``` ```