source: interfaces/python/demo_source.py @ ba00fd7

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

demo_*.py: /usr/bin/env python

  • Property mode set to 100755
File size: 376 bytes
Line 
1#! /usr/bin/env python
2
3import sys
4from aubio import source
5
6if __name__ == '__main__':
7  if len(sys.argv) < 2:
8    print 'usage: %s <inputfile>' % sys.argv[0]
9    sys.exit(1)
10  f = source(sys.argv[1], 8000, 256)
11  total_frames, read = 0, 256
12  while read:
13    vec, read = f()
14    total_frames += read
15  print "read", total_frames / float(f.samplerate), "seconds from", f.uri
Note: See TracBrowser for help on using the repository browser.