From a653f0b05d874c4677420b7d64778f86d031947a Mon Sep 17 00:00:00 2001 From: Jaikinator Date: Fri, 16 Jun 2023 15:09:44 +0200 Subject: [PATCH] added new example usage --- transcribe.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/transcribe.py b/transcribe.py index e7c62fa..6601707 100644 --- a/transcribe.py +++ b/transcribe.py @@ -1,3 +1,7 @@ -from autotranscript import AutoTranscribe +from autotranscript.autotranscript import AutoTranscribe -AutoTranscribe(diarisation=True).transcribe() +model = AutoTranscribe() + +text = model.transcribe("tests/test.wav") + +print(text)