summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-10-24 17:30:30 +0200
committerJohn Glover <j@johnglover.net>2012-10-24 17:30:30 +0200
commit03d7fafff27767d0d5707cb17166963d652cb953 (patch)
treee5f23d471bb4f51a6b19f912aca5ed2a62c8a0ee /examples
parenta3c30e33ab9b43b31b8ce730822d24ef37513d75 (diff)
downloadsimpl-03d7fafff27767d0d5707cb17166963d652cb953.tar.gz
simpl-03d7fafff27767d0d5707cb17166963d652cb953.tar.bz2
simpl-03d7fafff27767d0d5707cb17166963d652cb953.zip
[examples] Rename peaks to frames in plot peaks, clearer
Diffstat (limited to 'examples')
-rw-r--r--examples/plotpeaks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/plotpeaks.py b/examples/plotpeaks.py
index ef2a1a4..7c7b59e 100644
--- a/examples/plotpeaks.py
+++ b/examples/plotpeaks.py
@@ -15,8 +15,8 @@ audio = audio[len(audio) / 2:(len(audio) / 2) + 4096]
# peak detection using the SndObj library
pd = simpl.SndObjPeakDetection()
pd.max_peaks = 20
-peaks = pd.find_peaks(audio)
+frames = pd.find_peaks(audio)
# plot peaks using matplotlib
-simpl.plot.plot_peaks(peaks)
+simpl.plot.plot_peaks(frames)
plt.show()