Changeset 515c7b2 for python/aubio/task/notes.py
- Timestamp:
- Oct 15, 2009, 8:46:32 PM (15 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- e8ae95ac
- Parents:
- fe163ad
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/task/notes.py
rfe163ad r515c7b2 1 1 2 2 from aubio.task import task 3 from aubio.task.utils import *4 3 from aubio.aubioclass import * 5 4 … … 12 11 self.myvec, 13 12 self.params.threshold, 14 mode= get_onset_mode(self.params.onsetmode),13 mode=self.params.onsetmode, 15 14 dcthreshold=self.params.dcthreshold, 16 15 derivate=self.params.derivate) 17 self.pitchdet = pitchdetection(mode= get_pitch_mode(self.params.pitchmode),16 self.pitchdet = pitchdetection(mode=self.params.pitchmode, 18 17 bufsize=self.params.pbufsize, 19 18 hopsize=self.params.phopsize,
Note: See TracChangeset
for help on using the changeset viewer.