view estimate_tempo.py @ 10:7fc62809da94

Test and implement framer
author Chris Cannam
date Mon, 08 Oct 2012 15:34:50 +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