Mercurial > hg > python-tutorial-ssw2012-output
view estimate_tempo.py @ 12:9973b7cd0d31 tip
Implement rest of tempo estimator
author | Chris Cannam |
---|---|
date | Mon, 08 Oct 2012 15:46:54 +0100 |
parents | 1ef0ce23bf78 |
children |
line wrap: on
line source
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