Views
No views yet
1from accento import AccentoTranscriber
2
3# Auto-downloads from Hugging Face if not found locally
4transcriber = AccentoTranscriber(model_path="models/accento-v2.0")
5result = transcriber.transcribe("audio.wav")
6print(result.text)