Speech-Analyser / whisper_test.py
Arjunadhithya's picture
Upload 7 files
1f75494 verified
raw
history blame contribute delete
138 Bytes
import whisper
model = whisper.load_model("small")
result = model.transcribe("temp_audio.wav")
print("Whisper Output:", result["text"])