blob: 7c7b59e7543ad71d28261ef5538beb0d45bf78b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import sys
import simpl
import matplotlib.pyplot as plt
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]
# take just a few frames
audio = audio[len(audio) / 2:(len(audio) / 2) + 4096]
# peak detection using the SndObj library
pd = simpl.SndObjPeakDetection()
pd.max_peaks = 20
frames = pd.find_peaks(audio)
# plot peaks using matplotlib
simpl.plot.plot_peaks(frames)
plt.show()
|