# HG changeset patch # User Chris Cannam # Date 1349705310 -3600 # Node ID 1ef0ce23bf780de62b6191a03664fbed2820fa76 # Parent 05fe04002c59e17579bd1bff4b1b36674a5c2b2d Write tempo estimator main program diff -r 05fe04002c59 -r 1ef0ce23bf78 estimate_tempo.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/estimate_tempo.py Mon Oct 08 15:08:30 2012 +0100 @@ -0,0 +1,13 @@ + +import tempo_estimator as est + +import sys + +filename = sys.argv[1] + +print "Estimating tempo of", filename + +tempo = est.estimate_tempo_of_file(filename) + +print "Tempo is", tempo +