source: python/demos/demo_waveform_plot.py @ 1eee405

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 1eee405 was 1eee405, checked in by Paul Brossier <piem@piem.org>, 12 years ago

python/demos/demo_waveform_plot.py: plot more samples, add hop_size parameter, add set_xlabels_sample2time

  • Property mode set to 100755
File size: 2.0 KB
RevLine 
[5d5d6b9]1#! /usr/bin/env python
2
3import sys
4from aubio import pvoc, source
5from numpy import zeros, hstack
6
[1eee405]7def get_waveform_plot(filename, samplerate = 0, block_size = 4096, ax = None):
[5d5d6b9]8    import matplotlib.pyplot as plt
9    if not ax:
10        fig = plt.figure()
11        ax = fig.add_subplot(111)
[1eee405]12    hop_s = block_size
[5d5d6b9]13
14    allsamples_max = zeros(0,)
[1eee405]15    downsample = 2**4  # to plot n samples / hop_s
[5d5d6b9]16
17    a = source(filename, samplerate, hop_s)            # source file
18    if samplerate == 0: samplerate = a.samplerate
19
20    total_frames = 0
21    while True:
22        samples, read = a()
23        # keep some data to plot it later
24        new_maxes = (abs(samples.reshape(hop_s/downsample, downsample))).max(axis=0)
25        allsamples_max = hstack([allsamples_max, new_maxes])
26        total_frames += read
27        if read < hop_s: break
28    allsamples_max = (allsamples_max > 0) * allsamples_max
29    allsamples_max_times = [ ( float (t) / downsample ) * hop_s for t in range(len(allsamples_max)) ]
30
31    ax.plot(allsamples_max_times,  allsamples_max, '-b')
32    ax.plot(allsamples_max_times, -allsamples_max, '-b')
[daa0d5d]33    ax.axis(xmin = allsamples_max_times[0], xmax = allsamples_max_times[-1])
[5d5d6b9]34
[1eee405]35    set_xlabels_sample2time(ax, allsamples_max_times[-1], samplerate)
36    return ax
37
38def set_xlabels_sample2time(ax, latest_sample, samplerate):
39    if latest_sample / float(samplerate) > 60:
[daa0d5d]40        ax.set_xlabel('time (mm:ss)')
41        ax.set_xticklabels([ "%02d:%02d" % (t/float(samplerate)/60, (t/float(samplerate))%60) for t in ax.get_xticks()[:-1]], rotation = 50)
42    else:
43        ax.set_xlabel('time (ss.mm)')
44        ax.set_xticklabels([ "%02d.%02d" % (t/float(samplerate), 100*((t/float(samplerate))%1) ) for t in ax.get_xticks()[:-1]], rotation = 50)
[1eee405]45
46
[5d5d6b9]47if __name__ == '__main__':
[daa0d5d]48    import matplotlib.pyplot as plt
[5d5d6b9]49    if len(sys.argv) < 2:
50        print "Usage: %s <filename>" % sys.argv[0]
51    else:
52        for soundfile in sys.argv[1:]:
53            get_waveform_plot(soundfile)
54            # display graph
[daa0d5d]55            plt.show()
Note: See TracBrowser for help on using the repository browser.