Create Mp3

This commit is contained in:
Jaya77777 2025-01-28 14:41:55 +05:30 committed by GitHub
parent 517a43ecd1
commit 767573de22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

5
Mp3 Normal file
View File

@ -0,0 +1,5 @@
import whisper
model = whisper.load_model("turbo")
result = model.transcribe("audio.mp3")
print(result["text"])