demos/demo_onset_file.py: remove old onsets
authorPaul Brossier <piem@piem.org>
Tue, 12 Feb 2013 09:43:32 +0000 (04:43 -0500)
committerPaul Brossier <piem@piem.org>
Tue, 12 Feb 2013 09:43:32 +0000 (04:43 -0500)
python/demos/demo_onset_file.py

index cea969868233f9c2e91999ac4f5927a6c92bfe32..2c3738fbe36f4009d248e569f3c733d2104a9c8d 100755 (executable)
@@ -15,7 +15,6 @@ if len(sys.argv) < 2:
 
 filename = sys.argv[1]
 onsets = []
-oldonsets = []
 
 s = source(filename, samplerate, hop_s)
 o = onset("default", win_s, hop_s)
@@ -31,9 +30,6 @@ while True:
         thisbeat = (block_read - 4. + isbeat[0]) * hop_s / samplerate
         print "%.4f" % thisbeat
         onsets.append (thisbeat)
-        # old onset
-        thisbeat = (block_read - 3. ) * hop_s / samplerate
-        oldonsets.append (thisbeat)
     block_read += 1
     if read < hop_s: break
 
@@ -46,7 +42,6 @@ plot(allsamples_max_times,  allsamples_max, '-b')
 plot(allsamples_max_times, -allsamples_max, '-b')
 axis(xmin = 0., xmax = max(allsamples_max_times) )
 for stamp in onsets: plot([stamp, stamp], [-1., 1.], '.-r')
-for stamp in oldonsets: plot([stamp, stamp], [-1., 1.], '.-g')
 xlabel('time (s)')
 ylabel('amplitude')
 show()