diff options
-rw-r--r-- | tests/debug.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/debug.py b/tests/debug.py new file mode 100644 index 0000000..9e6d1b8 --- /dev/null +++ b/tests/debug.py @@ -0,0 +1,15 @@ + +def print_peaks(frames): + for n, f in enumerate(frames): + for p in f: + print str(n) + ":", p.frequency + +def print_partials(partials): + for partial_num, partial in enumerate(partials): + print partial_num, + print "(" + str(partial.starting_frame) + " to", + print str(partial.starting_frame + len(partial.peaks)) + "):", + for peak_number, peak in enumerate(partial.peaks): + print peak.frequency, + print + |