diff options
author | John Glover <j@johnglover.net> | 2021-07-23 09:53:44 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2021-07-23 09:53:44 +0100 |
commit | 19a2fa34b8b253fa5bfd7c8cbb7b51287d30cbbe (patch) | |
tree | 23f0f29b2c0137621986ad112e8ca9d225e1207a /examples | |
parent | 5c63899cbffacb9a0506eb79f9b5d7c6398bd031 (diff) | |
download | simpl-19a2fa34b8b253fa5bfd7c8cbb7b51287d30cbbe.tar.gz simpl-19a2fa34b8b253fa5bfd7c8cbb7b51287d30cbbe.tar.bz2 simpl-19a2fa34b8b253fa5bfd7c8cbb7b51287d30cbbe.zip |
More Python 3 fixes
Diffstat (limited to 'examples')
-rw-r--r-- | examples/plotpeaks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/plotpeaks.py b/examples/plotpeaks.py index ea9ff4c..adf9110 100644 --- a/examples/plotpeaks.py +++ b/examples/plotpeaks.py @@ -10,7 +10,7 @@ if len(sys.argv) != 2: audio = simpl.read_wav(sys.argv[1])[0] # take just a few frames -audio = audio[len(audio) / 2:(len(audio) / 2) + 4096] +audio = audio[len(audio) // 2:(len(audio) // 2) + 4096] # peak detection using the SndObj library pd = simpl.SndObjPeakDetection() |