Changes in / [d4791e5:4fe62ba]
- Location:
- python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/demos/demo_mfcc.py
rd4791e5 r4fe62ba 24 24 p = pvoc(win_s, hop_s) 25 25 m = mfcc(win_s, n_filters, n_coeffs, samplerate) 26 27 desc = [] 28 tdesc = [] 26 29 27 30 mfccs = zeros([13,]) -
python/tests/test_zero_crossing_rate.py
-
Property
mode
changed from
100755
to100644
rd4791e5 r4fe62ba 1 from aubio import fvec, zero_crossing_rate 2 1 3 #! /usr/bin/env python 2 4 3 5 from numpy.testing import TestCase 4 5 from aubio import fvec, zero_crossing_rate6 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 pass 13 17 14 18 def test_zeroes(self): -
Property
mode
changed from
Note: See TracChangeset
for help on using the changeset viewer.