summaryrefslogtreecommitdiff
path: root/examples/plotpartials.py
blob: 65017b05c5ef479eac82156b0e628bbefae841ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import sys
import matplotlib.pyplot as plt
import simpl

usage = 'Usage: python {0} <wav file>'.format(__file__)
if len(sys.argv) != 2:
    print usage
    sys.exit(1)

audio = simpl.read_wav(sys.argv[1])[0]

pd = simpl.LorisPeakDetection()
pd.max_peaks = 30
peaks = pd.find_peaks(audio)
pt = simpl.MQPartialTracking()
pt.max_partials = 30
partials = pt.find_partials(peaks)
simpl.plot_partials(partials, show_peaks=False)
plt.show()