source: python/demos/demo_bpm_extract.py @ 494df02

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

python/demos/demo_bpm_extract.py: add exception type, avoid {} as default argument value

  • Property mode set to 100755
File size: 1.4 KB
Line 
1#! /usr/bin/env python
2
3from aubio import source, tempo
4from numpy import median, diff
5
6def get_file_bpm(path, params = None):
7    """ Calculate the beats per minute (bpm) of a given file.
8        path: path to the file
9        param: dictionary of parameters
10    """
11    if params == None:
12        params = {}
13    try:
14        win_s = params['win_s']
15        samplerate = params['samplerate']
16        hop_s = params['hop_s']
17    except KeyError:
18        """
19        # super fast
20        samplerate, win_s, hop_s = 4000, 128, 64
21        # fast
22        samplerate, win_s, hop_s = 8000, 512, 128
23        """
24        # default:
25        samplerate, win_s, hop_s = 44100, 1024, 512
26
27    s = source(path, samplerate, hop_s)
28    samplerate = s.samplerate
29    o = tempo("specdiff", win_s, hop_s, samplerate)
30    # List of beats, in samples
31    beats = []
32    # Total number of frames read
33    total_frames = 0
34
35    while True:
36        samples, read = s()
37        is_beat = o(samples)
38        if is_beat:
39            this_beat = o.get_last_s()
40            beats.append(this_beat)
41            #if o.get_confidence() > .2 and len(beats) > 2.:
42            #    break
43        total_frames += read
44        if read < hop_s:
45            break
46
47    # Convert to periods and to bpm
48    bpms = 60./diff(beats)
49    b = median(bpms)
50    return b
51
52if __name__ == '__main__':
53    import sys
54    for f in sys.argv[1:]:
55        bpm = get_file_bpm(f)
56        print "%6s" % ("%.2f" % bpm), f
Note: See TracBrowser for help on using the repository browser.