Changes in / [4fe62ba:d4791e5]
- Location:
- python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/demos/demo_mfcc.py
r4fe62ba rd4791e5 24 24 p = pvoc(win_s, hop_s) 25 25 m = mfcc(win_s, n_filters, n_coeffs, samplerate) 26 27 desc = []28 tdesc = []29 26 30 27 mfccs = zeros([13,]) -
python/tests/test_zero_crossing_rate.py
-
Property
mode
changed from
100644
to100755
r4fe62ba rd4791e5 1 from aubio import fvec, zero_crossing_rate2 3 1 #! /usr/bin/env python 4 2 5 3 from numpy.testing import TestCase 4 5 from aubio import fvec, zero_crossing_rate 6 6 7 7 buf_size = 2048 … … 11 11 def setUp(self): 12 12 self.vector = fvec(buf_size) 13 14 def test(self):15 """ create and delete fvec """16 pass17 13 18 14 def test_zeroes(self): -
Property
mode
changed from
Note: See TracChangeset
for help on using the changeset viewer.