mirror of
https://github.com/FAUSheppy/ths-speech
synced 2025-12-06 08:11:35 +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
|