mirror of
https://github.com/openai/whisper.git
synced 2025-11-24 14:35:57 +00:00
6 lines
115 B
Python
6 lines
115 B
Python
import whisper
|
|
|
|
model = whisper.load_model('tiny.en')
|
|
|
|
print(model.transcribe('test_data/30s/out001.wav')['text'])
|