19 lines
217 B
Python
19 lines
217 B
Python
#!/usr/bin/env python
|
|
|
|
import sys
|
|
import keyfinder
|
|
|
|
"""
|
|
dep: github/mixxxdj/libkeyfinder
|
|
dep: pypi/keyfinder
|
|
dep: ffmpeg
|
|
|
|
note: cannot fsenc
|
|
"""
|
|
|
|
|
|
try:
|
|
print(keyfinder.key(sys.argv[1]).camelot())
|
|
except:
|
|
pass
|