source: python/demos/demo_specdesc.py @ 7982203

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

python/demos: add demo_pitch.py and demo_waveform_plot.py

  • Property mode set to 100755
File size: 2.8 KB
Line 
1#! /usr/bin/env python
2
3import sys
4from aubio import fvec, source, pvoc, specdesc
5from numpy import hstack
6
7win_s = 512                 # fft size
8hop_s = win_s / 4           # hop size
9
10if len(sys.argv) < 2:
11    print "Usage: %s <filename> [samplerate]" % sys.argv[0]
12    sys.exit(1)
13
14filename = sys.argv[1]
15
16samplerate = 0
17if len( sys.argv ) > 2: samplerate = int(sys.argv[2])
18
19s = source(filename, samplerate, hop_s)
20samplerate = s.samplerate
21
22pv = pvoc(win_s, hop_s)
23
24methods = ['default', 'energy', 'hfc', 'complex', 'phase', 'specdiff', 'kl', 'mkl',
25    'specflux', 'centroid', 'spread', 'skewness', 'kurtosis', 'slope', 'decrease',
26    'rolloff', ]
27
28all_descs = {}
29o = {}
30
31for method in methods:
32    cands = []
33    all_descs[method] = fvec(0)
34    o[method] = specdesc(method, win_s)
35
36total_frames = 0
37downsample = 2
38
39while True:
40    samples, read = s()
41    fftgrain = pv(samples)
42    print "%f" % ( total_frames / float(samplerate) ),
43    for method in methods:
44        specdesc_val = o[method](fftgrain)[0]
45        all_descs[method] = hstack ( [all_descs[method], specdesc_val] )
46        print "%f" % specdesc_val,
47    print
48    total_frames += read
49    if read < hop_s: break
50
51if 1:
52    print "done computing, now plotting"
53    import matplotlib.pyplot as plt
54    from demo_waveform_plot import get_waveform_plot
55    fig = plt.figure()
56    plt.rc('lines',linewidth='.8')
57    wave = plt.axes([0.1, 0.75, 0.8, 0.19])
58    get_waveform_plot(filename, samplerate, ax = wave )
59    wave.yaxis.set_visible(False)
60    wave.xaxis.set_visible(False)
61
62    all_desc_times = [ x * hop_s  for x in range(len(all_descs["default"])) ]
63    n_methods = len(methods)
64    for i, method in enumerate(methods):
65        #ax = fig.add_subplot (n_methods, 1, i)
66        #plt2 = plt.axes([0.1, 0.1, 0.8, 0.65], sharex = plt1)
67        ax = plt.axes ( [0.1, 0.75 - ((i+1) * 0.65 / n_methods),  0.8, 0.65 / n_methods], sharex = wave )
68        ax.plot(all_desc_times, all_descs[method], '-', label = method)
69        #ax.set_ylabel(method, rotation = 0)
70        ax.xaxis.set_visible(False)
71        ax.yaxis.set_visible(False)
72        ax.axis(xmax = all_desc_times[-1], xmin = all_desc_times[0])
73        ax.annotate(method, xy=(-10, 10),  xycoords='axes points',
74                horizontalalignment='right', verticalalignment='bottom',
75                )
76    if all_desc_times[-1] / float(samplerate) > 60:
77        plt.xlabel('time (mm:ss)')
78        ax.set_xticklabels([ "%02d:%02d" % (t/float(samplerate)/60, (t/float(samplerate))%60) for t in ax.get_xticks()[:-1]], rotation = 50)
79    else:
80        plt.xlabel('time (ss.mm)')
81        ax.set_xticklabels([ "%02d.%02d" % (t/float(samplerate), 100*((t/float(samplerate))%1) ) for t in ax.get_xticks()[:-1]], rotation = 50)
82    #plt.ylabel('spectral descriptor value')
83    ax.xaxis.set_visible(True)
84    plt.show()
Note: See TracBrowser for help on using the repository browser.