rdio-to-discord/twotonedec.py

8 lines
143 B
Python

import sys
from icad_tone_detection import tone_detect
file_path = sys.argv[1]
result = tone_detect(file_path)
print(result.two_tone_result)