source: python/aubiopitch @ b1f723d

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

protected onset enumerators, factorise python check_modes

  • Property mode set to 100755
File size: 4.6 KB
Line 
1#!/usr/bin/python
2
3""" this file was written by Paul Brossier
4  it is released under the GNU/GPL license.
5"""
6
7
8import sys
9from aubio.aubioclass import *
10
11usage = "usage: %s [options] -i soundfile" % sys.argv[0]
12
13
14def parse_args():
15        from optparse import OptionParser
16        parser = OptionParser(usage=usage)
17        parser.add_option("-i","--input",
18                          action="store", dest="filename", 
19                          help="input sound file")
20        parser.add_option("-m","--mode", action="callback", 
21                          callback=check_pitch_mode, dest="mode", 
22                          default=aubio_pitch_mcomb,
23                          help="pitch detection mode [default=mcomb] \
24                          mcomb|yin|fcomb|schmitt")
25        parser.add_option("-B","--bufsize",
26                          action="store", dest="bufsize", default=1024, 
27                          help="buffer size [default=1024]")
28        parser.add_option("-H","--hopsize",
29                          action="store", dest="hopsize", default=512, 
30                          help="overlap size [default=512]")
31        parser.add_option("-t","--threshold",
32                          action="store", dest="threshold", default=0.1, 
33                          help="pitch threshold (for yin) [default=0.1]")
34        parser.add_option("-s","--silence",
35                          action="store", dest="silence", default=-70, 
36                          help="silence threshold [default=-70]")
37        parser.add_option("-D","--delay",
38                          action="store", dest="delay", 
39                          help="number of seconds to take back [default=system]\
40                          default system delay is 2*hopsize/samplerate")
41        parser.add_option("-L","--localmin",
42                          action="store_true", dest="localmin", default=False, 
43                          help="use local minima after peak detection")
44        parser.add_option("-c","--cut",
45                          action="store_true", dest="cut", default=False,
46                          help="cut input sound file at detected labels \
47                          best used with option -L")
48        # to be implemented
49        parser.add_option("-n","--note",
50                          action="store_true", dest="note", default=False,
51                          help="NOT IMPLEMENTED output notes")
52        # plotting functions
53        parser.add_option("-p","--plot",
54                          action="store_true", dest="plot", default=False, 
55                          help="NOT IMPLEMENTED draw plot")
56        parser.add_option("-O","--outplot",
57                          action="store", dest="outplot", default=None, 
58                          help="NOT IMPLEMENTED save plot to output.{ps,png}")
59        parser.add_option("-v","--verbose",
60                          action="store_true", dest="verbose", default=False,
61                          help="make lots of noise [default]")
62        parser.add_option("-q","--quiet",
63                          action="store_false", dest="verbose", default=False, 
64                          help="be quiet")
65        (options, args) = parser.parse_args()
66        if not options.filename: 
67                 print "no file name given\n", usage
68                 sys.exit(1)
69        return options, args
70
71options, args = parse_args()
72
73filename   = options.filename
74samplerate = float(sndfile(filename).samplerate())
75hopsize    = int(options.hopsize)
76bufsize    = int(options.bufsize)
77step       = float(samplerate)/float(hopsize)
78threshold  = float(options.threshold)
79silence    = float(options.silence)
80#mintol     = float(options.mintol)*step
81# default take back system delay
82if options.delay: delay = float(options.delay)
83else:             delay = 2./step
84
85if options.note:
86        exit("not implemented yet")
87else:
88        pitch = getpitch(filename, #threshold,silence,
89                mode=options.mode,
90                bufsize=bufsize,hopsize=hopsize)
91
92## take back system delay
93#if delay != 0:
94#        for i in range(len(onsets)):
95#                onsets[i] -= delay*step
96#
97## prune doubled
98#if mintol > 0:
99#        last = -2*mintol
100#        newonsets = []
101#        for new in onsets:
102#                if (new - last > mintol):
103#                        newonsets.append(new)
104#                last = new
105#        onsets = newonsets
106
107# print times in second
108if options.verbose:
109        for i in range(len(pitch)): 
110                print "%f\t%f" % (i/step,pitch[i])
111
112if options.plot:
113        from aubio.gnuplot import plot_pitch
114        plot_pitch(filename, pitch, 
115                samplerate=samplerate, hopsize=hopsize, outplot=options.outplot)
116
Note: See TracBrowser for help on using the repository browser.