Merge 9b84c4df26579f9b9d15b2e265ef8bc551338b41 into c0d2f624c09dc18e709e37c2ad90c039a4eb72a2

This commit is contained in:
TypeHintsFun 2025-09-03 02:56:40 +08:00 committed by GitHub
commit 1974525614
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -118,7 +118,7 @@ Transcription can also be performed within Python:
import whisper import whisper
model = whisper.load_model("turbo") model = whisper.load_model("turbo")
result = model.transcribe("audio.mp3") result = whisper.transcribe(model, "audio.mp3")
print(result["text"]) print(result["text"])
``` ```