Changeset 7873363
- Timestamp:
- Nov 24, 2007, 6:46:30 PM (17 years ago)
- 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:
- 5dd22a9
- Parents:
- d7a104c (diff), c1656cf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 8 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/Makefile.am
rd7a104c r7873363 7 7 aubioonset \ 8 8 aubiotrack \ 9 aubionotes 9 aubionotes \ 10 aubiomfcc 10 11 11 12 noinst_PROGRAMS = \ … … 19 20 aubiotrack_SOURCES = aubiotrack.c utils.c 20 21 aubioquiet_SOURCES = aubioquiet.c utils.c 22 aubiomfcc_SOURCES = aubiomfcc.c utils.c 21 23 22 24 aubioonset_LDADD = @JACK_LIBS@ … … 24 26 aubiotrack_LDADD = @JACK_LIBS@ 25 27 aubioquiet_LDADD = @JACK_LIBS@ 28 aubiomfcc_LDADD = @JACK_LIBS@ -
src/Makefile.am
rd7a104c r7873363 24 24 onset.h \ 25 25 tempo.h \ 26 filter.h 26 filter.h \ 27 filterbank.h \ 28 mfcc.h 29 27 30 nodist_pkginclude_HEADERS = config.h 28 31 … … 73 76 tempo.h \ 74 77 filter.c \ 75 filter.h 78 filter.h \ 79 filterbank.c \ 80 filterbank.h \ 81 mfcc.h \ 82 mfcc.c 76 83 77 84 AM_CFLAGS = @AUBIO_CFLAGS@ @FFTWLIB_CFLAGS@ @SAMPLERATE_CFLAGS@ -
src/aubio.h
rd7a104c r7873363 80 80 #include "onset.h" 81 81 #include "tempo.h" 82 #include "filterbank.h" 83 #include "mfcc.h" 82 84 83 85 #ifdef __cplusplus -
swig/aubio.i
rd7a104c r7873363 154 154 smpl_t aubio_zero_crossing_rate(fvec_t * input); 155 155 smpl_t aubio_spectral_centroid(cvec_t * spectrum, smpl_t samplerate); 156 157 /* filterbank */ 158 aubio_filterbank_t * new_aubio_filterbank(uint_t win_s, uint_t channels); 159 aubio_filterbank_t * new_aubio_filterbank_mfcc(uint_t n_filters, uint_t win_s, uint_t samplerate, smpl_t freq_min, smpl_t freq_max); 160 void del_aubio_filterbank(aubio_filterbank_t * fb); 161 void aubio_filterbank_do(aubio_filterbank_t * fb, cvec_t * in, fvec_t *out); 162 fvec_t * aubio_filterbank_getchannel(aubio_filterbank_t * fb, uint_t channel); 163 164 /* mfcc */ 165 aubio_mfcc_t * new_aubio_mfcc (uint_t win_s, uint_t samplerate, uint_t n_filters, uint_t n_coefs, smpl_t lowfreq, smpl_t highfreq, uint_t channels); 166 void del_aubio_mfcc(aubio_mfcc_t *mf); 167 void aubio_mfcc_do(aubio_mfcc_t *mf, cvec_t *in, fvec_t *out); 156 168 157 169 /* scale */
Note: See TracChangeset
for help on using the changeset viewer.