Changeset 515c7b2


Ignore:
Timestamp:
Oct 15, 2009, 8:46:32 PM (14 years ago)
Author:
Paul Brossier <piem@piem.org>
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
Message:

python/: remove task.utils, not used anymore

Location:
python/aubio/task
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • python/aubio/task/__init__.py

    rfe163ad r515c7b2  
    11from aubio.aubioclass import *
    22from aubio.task.task import task
    3 from aubio.task.utils import *
    43from aubio.task.params import taskparams
    54from aubio.task.silence import tasksilence
  • python/aubio/task/notes.py

    rfe163ad r515c7b2  
    11
    22from aubio.task import task
    3 from aubio.task.utils import *
    43from aubio.aubioclass import *
    54
     
    1211                        self.myvec,
    1312                        self.params.threshold,
    14                         mode=get_onset_mode(self.params.onsetmode),
     13                        mode=self.params.onsetmode,
    1514                        dcthreshold=self.params.dcthreshold,
    1615                        derivate=self.params.derivate)
    17                 self.pitchdet  = pitchdetection(mode=get_pitch_mode(self.params.pitchmode),
     16                self.pitchdet  = pitchdetection(mode=self.params.pitchmode,
    1817                        bufsize=self.params.pbufsize,
    1918                        hopsize=self.params.phopsize,
  • python/aubio/task/onset.py

    rfe163ad r515c7b2  
    11from aubio.task.task import task
    2 from aubio.task.utils import *
    32from aubio.aubioclass import *
    43
     
    1413                        self.myvec,
    1514                        self.params.threshold,
    16                         mode=get_onset_mode(self.params.onsetmode),
     15                        mode=self.params.onsetmode,
    1716                        dcthreshold=self.params.dcthreshold,
    1817                        derivate=self.params.derivate)
  • python/aubio/task/pitch.py

    rfe163ad r515c7b2  
    11from aubio.task.task import task
    22from aubio.task.silence import tasksilence
    3 from aubio.task.utils import *
    43from aubio.aubioclass import *
    54
Note: See TracChangeset for help on using the changeset viewer.