Changeset e997b1a
- Timestamp:
- Dec 1, 2004, 9:34:40 PM (20 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:
- 02839ae
- Parents:
- c0ec39c
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/Makefile.am
rc0ec39c re997b1a 5 5 aubionotes.sgml aubioonset.sgml 6 6 7 man_MANS = aubionotes.1 aubioonset.1 7 8 #docbook_docs = aubio-devdoc.xml 8 9 #DOCBOOK_STYLESHEET ?= http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl … … 37 38 cp aubio.css examples 38 39 39 man: 40 docbook-to-man aubionotes.sgml > aubionotes.1 41 docbook-to-man aubioonset.sgml > aubioonset.1 40 %.sgml: 41 42 %.1: %.sgml 43 docbook-to-man $< > $*.1 42 44 43 45 # Update docs for distribution -
doc/Makefile.in
rc0ec39c re997b1a 159 159 aubionotes.sgml aubioonset.sgml 160 160 161 162 man_MANS = aubionotes.1 aubioonset.1 161 163 subdir = doc 162 164 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 165 167 CONFIG_CLEAN_FILES = 166 168 DIST_SOURCES = 169 170 NROFF = nroff 171 MANS = $(man_MANS) 167 172 DIST_COMMON = $(srcdir)/Makefile.in Makefile.am 168 173 all: all-am … … 184 189 -rm -f libtool 185 190 uninstall-info-am: 191 192 man1dir = $(mandir)/man1 193 install-man1: $(man1_MANS) $(man_MANS) 194 @$(NORMAL_INSTALL) 195 $(mkinstalldirs) $(DESTDIR)$(man1dir) 196 @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ 197 l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ 198 for i in $$l2; do \ 199 case "$$i" in \ 200 *.1*) list="$$list $$i" ;; \ 201 esac; \ 202 done; \ 203 for i in $$list; do \ 204 if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ 205 else file=$$i; fi; \ 206 ext=`echo $$i | sed -e 's/^.*\\.//'`; \ 207 case "$$ext" in \ 208 1*) ;; \ 209 *) ext='1' ;; \ 210 esac; \ 211 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ 212 inst=`echo $$inst | sed -e 's/^.*\///'`; \ 213 inst=`echo $$inst | sed '$(transform)'`.$$ext; \ 214 echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ 215 $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ 216 done 217 uninstall-man1: 218 @$(NORMAL_UNINSTALL) 219 @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ 220 l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ 221 for i in $$l2; do \ 222 case "$$i" in \ 223 *.1*) list="$$list $$i" ;; \ 224 esac; \ 225 done; \ 226 for i in $$list; do \ 227 ext=`echo $$i | sed -e 's/^.*\\.//'`; \ 228 case "$$ext" in \ 229 1*) ;; \ 230 *) ext='1' ;; \ 231 esac; \ 232 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ 233 inst=`echo $$inst | sed -e 's/^.*\///'`; \ 234 inst=`echo $$inst | sed '$(transform)'`.$$ext; \ 235 echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \ 236 rm -f $(DESTDIR)$(man1dir)/$$inst; \ 237 done 186 238 tags: TAGS 187 239 TAGS: … … 224 276 check-am: all-am 225 277 check: check-am 226 all-am: Makefile 278 all-am: Makefile $(MANS) 227 279 228 280 installdirs: 281 $(mkinstalldirs) $(DESTDIR)$(man1dir) 229 282 install: install-am 230 283 install-exec: install-exec-am … … 267 320 info-am: 268 321 269 install-data-am: 322 install-data-am: install-man 270 323 271 324 install-exec-am: … … 273 326 install-info: install-info-am 274 327 275 install-man: 328 install-man: install-man1 276 329 277 330 installcheck-am: … … 294 347 ps-am: 295 348 296 uninstall-am: uninstall-info-am 349 uninstall-am: uninstall-info-am uninstall-man 350 351 uninstall-man: uninstall-man1 297 352 298 353 .PHONY: all all-am check check-am clean clean-generic clean-libtool \ … … 300 355 dvi-am info info-am install install-am install-data \ 301 356 install-data-am install-exec install-exec-am install-info \ 302 install-info-am install-man install- strip installcheck\303 installcheck -am installdirs maintainer-clean \357 install-info-am install-man install-man1 install-strip \ 358 installcheck installcheck-am installdirs maintainer-clean \ 304 359 maintainer-clean-generic maintainer-clean-local mostlyclean \ 305 360 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ 306 uninstall uninstall-am uninstall-info-am 307 361 uninstall uninstall-am uninstall-info-am uninstall-man \ 362 uninstall-man1 308 363 309 364 #docbook_docs = aubio-devdoc.xml … … 339 394 cp aubio.css examples 340 395 341 man: 342 docbook-to-man aubionotes.sgml > aubionotes.1 343 docbook-to-man aubioonset.sgml > aubioonset.1 396 %.sgml: 397 398 %.1: %.sgml 399 docbook-to-man $< > $*.1 344 400 345 401 # Update docs for distribution -
doc/aubionotes.sgml
rc0ec39c re997b1a 58 58 <refname>&dhpackage;</refname> 59 59 60 <refpurpose>an sound file onset detector</refpurpose> 60 <refpurpose>a command line tool for real time wav to midi 61 conversion</refpurpose> 62 61 63 </refnamediv> 62 64 <refsynopsisdiv> -
examples/Makefile.am
rc0ec39c re997b1a 19 19 testforclam 20 20 21 man_MANS = aubionotes.1 aubioonset.1 22 EXTRA_DIST = utils.h $(man_MANS) 21 EXTRA_DIST = utils.h 23 22 24 23 -
examples/Makefile.in
rc0ec39c re997b1a 174 174 175 175 176 man_MANS = aubionotes.1 aubioonset.1 177 EXTRA_DIST = utils.h $(man_MANS) 176 EXTRA_DIST = utils.h 178 177 179 178 # optionally add sources file for these programs … … 247 246 $(aubioonset_SOURCES) midialsa.c midiparse.c midiplay.c \ 248 247 $(testforclam_SOURCES) 249 250 NROFF = nroff251 MANS = $(man_MANS)252 248 DIST_COMMON = $(srcdir)/Makefile.in Makefile.am 253 249 SOURCES = $(aubionotes_SOURCES) $(aubionotesmedian_SOURCES) $(aubioonset_SOURCES) midialsa.c midiparse.c midiplay.c $(testforclam_SOURCES) … … 377 373 -rm -f libtool 378 374 uninstall-info-am: 379 380 man1dir = $(mandir)/man1381 install-man1: $(man1_MANS) $(man_MANS)382 @$(NORMAL_INSTALL)383 $(mkinstalldirs) $(DESTDIR)$(man1dir)384 @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \385 l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \386 for i in $$l2; do \387 case "$$i" in \388 *.1*) list="$$list $$i" ;; \389 esac; \390 done; \391 for i in $$list; do \392 if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \393 else file=$$i; fi; \394 ext=`echo $$i | sed -e 's/^.*\\.//'`; \395 case "$$ext" in \396 1*) ;; \397 *) ext='1' ;; \398 esac; \399 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \400 inst=`echo $$inst | sed -e 's/^.*\///'`; \401 inst=`echo $$inst | sed '$(transform)'`.$$ext; \402 echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \403 $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \404 done405 uninstall-man1:406 @$(NORMAL_UNINSTALL)407 @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \408 l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \409 for i in $$l2; do \410 case "$$i" in \411 *.1*) list="$$list $$i" ;; \412 esac; \413 done; \414 for i in $$list; do \415 ext=`echo $$i | sed -e 's/^.*\\.//'`; \416 case "$$ext" in \417 1*) ;; \418 *) ext='1' ;; \419 esac; \420 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \421 inst=`echo $$inst | sed -e 's/^.*\///'`; \422 inst=`echo $$inst | sed '$(transform)'`.$$ext; \423 echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \424 rm -f $(DESTDIR)$(man1dir)/$$inst; \425 done426 375 427 376 ETAGS = etags … … 512 461 check-am: all-am 513 462 check: check-am 514 all-am: Makefile $(PROGRAMS) $(MANS)463 all-am: Makefile $(PROGRAMS) 515 464 516 465 installdirs: 517 $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir)466 $(mkinstalldirs) $(DESTDIR)$(bindir) 518 467 install: install-am 519 468 install-exec: install-exec-am … … 559 508 info-am: 560 509 561 install-data-am: install-man510 install-data-am: 562 511 563 512 install-exec-am: install-binPROGRAMS … … 565 514 install-info: install-info-am 566 515 567 install-man: install-man1516 install-man: 568 517 569 518 installcheck-am: … … 587 536 ps-am: 588 537 589 uninstall-am: uninstall-binPROGRAMS uninstall-info-am uninstall-man 590 591 uninstall-man: uninstall-man1 538 uninstall-am: uninstall-binPROGRAMS uninstall-info-am 592 539 593 540 .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ … … 597 544 install-am install-binPROGRAMS install-data install-data-am \ 598 545 install-exec install-exec-am install-info install-info-am \ 599 install-man install-man1 install-strip installcheck \ 600 installcheck-am installdirs maintainer-clean \ 601 maintainer-clean-generic mostlyclean mostlyclean-compile \ 602 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ 603 tags uninstall uninstall-am uninstall-binPROGRAMS \ 604 uninstall-info-am uninstall-man uninstall-man1 546 install-man install-strip installcheck installcheck-am \ 547 installdirs maintainer-clean maintainer-clean-generic \ 548 mostlyclean mostlyclean-compile mostlyclean-generic \ 549 mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ 550 uninstall-am uninstall-binPROGRAMS uninstall-info-am 605 551 606 552 # Tell versions [3.59,3.63) of GNU make to not export all variables. -
python/aubiocut
rc0ec39c re997b1a 8 8 import sys 9 9 10 bufsize = 51210 bufsize = 1024 11 11 hopsize = bufsize/2 12 12 … … 34 34 i -= 1 35 35 now = (frameread+1-i)*hopsize/(srate+0.) 36 #del fileo37 #fileo = sndfile("%s%f%s" % ("/tmp/",now,filein[-4:]),model=filei)38 36 mylist.append(now) 39 #writesize = fileo.write(readsize,myoldvec)40 37 frameread += 1 41 38 return mylist
Note: See TracChangeset
for help on using the changeset viewer.