Changeset a49b0bc for python/aubiopitch


Ignore:
Timestamp:
Nov 6, 2005, 12:19:50 PM (19 years ago)
Author:
Paul Brossier <piem@altern.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:
197571a
Parents:
d282373
Message:

add crude damage limits, make world executable
add crude damage limits, make world executable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/aubiopitch

    rd282373 ra49b0bc  
    108108                        bufsize=bufsize,hopsize=hopsize,
    109109                        silence=silence))
     110                for j in range(len(pitch[i])):
     111                        if pitch[i][j] > 1500 or pitch[i][j] < 40:
     112                                pitch[i][j] = 0.;
    110113
    111114## take back system delay
Note: See TracChangeset for help on using the changeset viewer.