feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since 66a3c51 was
4de5f35,
checked in by Paul Brossier <piem@piem.org>, 9 years ago
|
python/lib/aubio/init.py: use relative import (python3, see #33)
|
-
Property mode set to
100644
|
File size:
433 bytes
|
Rev | Line | |
---|
[229d050] | 1 | #! /usr/bin/env python |
---|
| 2 | |
---|
[ccca7cb] | 3 | import numpy |
---|
[4de5f35] | 4 | from ._aubio import * |
---|
| 5 | from .midiconv import * |
---|
| 6 | from .slicing import * |
---|
[ccca7cb] | 7 | |
---|
| 8 | class fvec(numpy.ndarray): |
---|
[229d050] | 9 | " a simple numpy array holding a vector of float32 " |
---|
[ccca7cb] | 10 | def __new__(self, length = 1024, **kwargs): |
---|
[229d050] | 11 | self.length = length |
---|
[d836c21] | 12 | if type(length) == type([]): |
---|
| 13 | return numpy.array(length, dtype='float32', **kwargs) |
---|
| 14 | return numpy.zeros(length, dtype='float32', **kwargs) |
---|
Note: See
TracBrowser
for help on using the repository browser.