Changeset ca1abdd for python/aubio/task
- Timestamp:
- Oct 19, 2009, 10:51:59 AM (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:
- b14107f
- Parents:
- 9f07d52
- Location:
- python/aubio/task
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/task/notes.py
r9f07d52 rca1abdd 14 14 dcthreshold=self.params.dcthreshold, 15 15 derivate=self.params.derivate) 16 self.pitchdet = pitch detection(mode=self.params.pitchmode,16 self.pitchdet = pitch(mode=self.params.pitchmode, 17 17 bufsize=self.params.pbufsize, 18 18 hopsize=self.params.phopsize, -
python/aubio/task/pitch.py
r9f07d52 rca1abdd 13 13 else: 14 14 tolerance = 0. 15 self.pitchdet = pitch detection(mode=self.params.pitchmode,15 self.pitchdet = pitch(mode=self.params.pitchmode, 16 16 bufsize=self.params.bufsize, 17 17 hopsize=self.params.hopsize,
Note: See TracChangeset
for help on using the changeset viewer.