mirror of
https://github.com/FAUSheppy/ths-speech
synced 2025-12-06 08:11:35 +01:00
9 lines
182 B
Python
Executable File
9 lines
182 B
Python
Executable File
#!/usr/bin/python3
|
|
import s_input
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
path = sys.argv[1]
|
|
print("AudioFile: {}".format(path))
|
|
print(s_input.analyse_file_by_path(path))
|