8 lines
139 B
Python
8 lines
139 B
Python
from autotranscript.autotranscript import AutoTranscribe
|
|
|
|
model = AutoTranscribe()
|
|
|
|
text = model.transcribe("tests/test.wav")
|
|
|
|
print(text)
|