summaryrefslogtreecommitdiff
path: root/examples/plotpeaks.py
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-08-23 18:28:47 +0100
committerJohn Glover <j@johnglover.net>2012-08-23 18:28:47 +0100
commite11640ebce01e39b4a900c5c29acd401cda4f77f (patch)
treeab8ff95005243d31f29e3af2dd405b0bfbbed223 /examples/plotpeaks.py
parent18ccab0e26a692073c2cd7d3c13d0c289b8f748f (diff)
downloadsimpl-e11640ebce01e39b4a900c5c29acd401cda4f77f.tar.gz
simpl-e11640ebce01e39b4a900c5c29acd401cda4f77f.tar.bz2
simpl-e11640ebce01e39b4a900c5c29acd401cda4f77f.zip
[examples] Move examples to top level. Update examples so file paths can be specified on the command line.
Diffstat (limited to 'examples/plotpeaks.py')
-rw-r--r--examples/plotpeaks.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/plotpeaks.py b/examples/plotpeaks.py
new file mode 100644
index 0000000..ef2a1a4
--- /dev/null
+++ b/examples/plotpeaks.py
@@ -0,0 +1,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
+peaks = pd.find_peaks(audio)
+
+# plot peaks using matplotlib
+simpl.plot.plot_peaks(peaks)
+plt.show()