Merge branch 'master' into awhitening
[aubio.git] / python / demos / demo_source.py
1 #! /usr/bin/env python
2
3 import sys
4 from aubio import source
5
6 if __name__ == '__main__':
7     if len(sys.argv) < 2:
8         print('usage: %s <inputfile> [samplerate] [hop_size]' % sys.argv[0])
9         sys.exit(1)
10     samplerate = 0
11     hop_size = 256
12     if len(sys.argv) > 2: samplerate = int(sys.argv[2])
13     if len(sys.argv) > 3: hop_size = int(sys.argv[3])
14
15     f = source(sys.argv[1], samplerate, hop_size)
16     samplerate = f.samplerate
17
18     total_frames, read = 0, f.hop_size
19     while read:
20         vec, read = f()
21         total_frames += read
22         if read < f.hop_size: break
23     outstr = "read %.2fs" % (total_frames / float(samplerate))
24     outstr += " (%d frames in" % total_frames
25     outstr += " %d blocks" % (total_frames // f.hop_size)
26     outstr += " at %dHz)" % f.samplerate
27     outstr += " from " + f.uri
28     print(outstr)