mirror of
https://github.com/FAUSheppy/ths-speech
synced 2026-01-22 06:47:39 +01:00
7 lines
118 B
Python
7 lines
118 B
Python
import speech
|
|
|
|
def analyse_file_by_path(file_path):
|
|
transcript = speech.analyse(file_path)
|
|
|
|
return transcript
|