#!/usr/bin/env python3
from whisper import load_model # pip install openai-whisper
model = load_model('small')
result = model.transcribe('my_audio.mp3', language='pt')
print(result['text'])
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)