Changeset 515c7b2 for python/aubio/task
- 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
- Location:
- python/aubio/task
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/task/__init__.py
rfe163ad r515c7b2 1 1 from aubio.aubioclass import * 2 2 from aubio.task.task import task 3 from aubio.task.utils import *4 3 from aubio.task.params import taskparams 5 4 from aubio.task.silence import tasksilence -
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, -
python/aubio/task/onset.py
rfe163ad r515c7b2 1 1 from aubio.task.task import task 2 from aubio.task.utils import *3 2 from aubio.aubioclass import * 4 3 … … 14 13 self.myvec, 15 14 self.params.threshold, 16 mode= get_onset_mode(self.params.onsetmode),15 mode=self.params.onsetmode, 17 16 dcthreshold=self.params.dcthreshold, 18 17 derivate=self.params.derivate) -
python/aubio/task/pitch.py
rfe163ad r515c7b2 1 1 from aubio.task.task import task 2 2 from aubio.task.silence import tasksilence 3 from aubio.task.utils import *4 3 from aubio.aubioclass import * 5 4
Note: See TracChangeset
for help on using the changeset viewer.