Changeset 660c1d82
- Timestamp:
- Feb 15, 2006, 11:47:13 AM (19 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:
- 5140276
- Parents:
- d9101a5
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified plugins/puredata/Makefile.am ¶
rd9101a5 r660c1d82 21 21 aubiotempo~.c \ 22 22 aubiotss~.c \ 23 aubioquiet~.c 23 aubioquiet~.c \ 24 aubiopitch~.c 24 25 25 26 pdincludedir = $(pddir)/src … … 41 42 help/help-aubioquiet~.pd \ 42 43 help/help-aubiotempo~.pd \ 43 help/help-aubiotss~.pd 44 help/help-aubiotss~.pd \ 45 help/help-aubiopitch~.pd 44 46 45 47 pdinstallexp_DATA = \ -
TabularUnified plugins/puredata/aubio_setup.c ¶
rd9101a5 r660c1d82 9 9 extern void aubiotss_tilde_setup (void); 10 10 extern void aubioquiet_tilde_setup (void); 11 extern void aubiopitch_tilde_setup (void); 11 12 12 13 void aubio_setup (void) … … 17 18 aubiotss_tilde_setup(); 18 19 aubioquiet_tilde_setup(); 20 aubiopitch_tilde_setup(); 19 21 } -
TabularUnified python/aubio/gnuplot.py ¶
rd9101a5 r660c1d82 181 181 maxpitch = 100 182 182 for i in range(len(pitch)): 183 #if len(pitch[i]) == 0: pitch[i] = [0.]; 184 183 185 downtime = (hopsize/samplerate)*numarray.arange(len(pitch[i])) 184 186 d.append(Gnuplot.Data(downtime,pitch[i],with='lines',
Note: See TracChangeset
for help on using the changeset viewer.