Changes in / [4fe62ba:d4791e5]


Ignore:
Location:
python
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/demos/demo_mfcc.py

    r4fe62ba rd4791e5  
    2424p = pvoc(win_s, hop_s)
    2525m = mfcc(win_s, n_filters, n_coeffs, samplerate)
    26 
    27 desc = []
    28 tdesc = []
    2926
    3027mfccs = zeros([13,])
  • python/tests/test_zero_crossing_rate.py

    • Property mode changed from 100644 to 100755
    r4fe62ba rd4791e5  
    1 from aubio import fvec, zero_crossing_rate
    2 
    31#! /usr/bin/env python
    42
    53from numpy.testing import TestCase
     4
     5from aubio import fvec, zero_crossing_rate
    66
    77buf_size = 2048
     
    1111    def setUp(self):
    1212        self.vector = fvec(buf_size)
    13 
    14     def test(self):
    15         """ create and delete fvec """
    16         pass
    1713
    1814    def test_zeroes(self):
Note: See TracChangeset for help on using the changeset viewer.