9 lines
165 B
Python
9 lines
165 B
Python
from autotranscript.autotranscript import AutoTranscribe
|
|
|
|
model = AutoTranscribe()
|
|
|
|
text = model.transcribe("tests/test.wav")
|
|
|
|
print("Transcription:\n")
|
|
print(text)
|