Changes in / [37eb9ce:3f16b61]
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/Makefile.am
r37eb9ce r3f16b61 11 11 12 12 noinst_PROGRAMS = \ 13 aubiopitch14 13 aubioquiet 15 14 … … 21 20 aubionotes_SOURCES = aubionotes.c $(COMMON_SOURCE_FILES) 22 21 aubiotrack_SOURCES = aubiotrack.c $(COMMON_SOURCE_FILES) 23 aubiopitch_SOURCES = aubiopitch.c $(COMMON_SOURCE_FILES)24 22 aubioquiet_SOURCES = aubioquiet.c $(COMMON_SOURCE_FILES) 25 23 aubiomfcc_SOURCES = aubiomfcc.c $(COMMON_SOURCE_FILES) … … 28 26 aubionotes_LDADD = @SNDFILE_LIBS@ @JACK_LIBS@ 29 27 aubiotrack_LDADD = @SNDFILE_LIBS@ @JACK_LIBS@ 30 aubiopitch_LDADD = @SNDFILE_LIBS@ @JACK_LIBS@31 28 aubioquiet_LDADD = @SNDFILE_LIBS@ @JACK_LIBS@ 32 29 aubiomfcc_LDADD = @SNDFILE_LIBS@ @JACK_LIBS@ -
examples/utils.c
r37eb9ce r3f16b61 207 207 parse_args (argc, argv); 208 208 209 if (!usejack) {210 debug ("Opening files ...\n");211 file = new_aubio_sndfile_ro (input_filename);212 if (file == NULL) {213 outmsg ("Could not open input file %s.\n", input_filename);214 exit (1);215 }216 if (verbose)217 aubio_sndfile_info (file);218 samplerate = aubio_sndfile_samplerate (file);219 if (output_filename != NULL)220 fileout = new_aubio_sndfile_wo (file, output_filename);221 }222 #ifdef HAVE_LASH223 else {224 aubio_lash_client = lash_init (lash_args, argv[0],225 LASH_Config_Data_Set | LASH_Terminal, LASH_PROTOCOL (2, 0));226 if (!aubio_lash_client) {227 fprintf (stderr, "%s: could not initialise lash\n", __FUNCTION__);228 }229 /* tell the lash server our client id */230 if (lash_enabled (aubio_lash_client)) {231 lash_event_t *event =232 (lash_event_t *) lash_event_new_with_type (LASH_Client_Name);233 lash_event_set_string (event, "aubio");234 lash_send_event (aubio_lash_client, event);235 pthread_create (&lash_thread, NULL, lash_thread_main, NULL);236 }237 }238 #endif /* HAVE_LASH */239 240 209 woodblock = new_fvec (overlap_size); 241 210 if (output_filename || usejack) { … … 254 223 } 255 224 225 if (!usejack) { 226 debug ("Opening files ...\n"); 227 file = new_aubio_sndfile_ro (input_filename); 228 if (file == NULL) { 229 outmsg ("Could not open input file %s.\n", input_filename); 230 exit (1); 231 } 232 if (verbose) 233 aubio_sndfile_info (file); 234 samplerate = aubio_sndfile_samplerate (file); 235 if (output_filename != NULL) 236 fileout = new_aubio_sndfile_wo (file, output_filename); 237 } 238 #ifdef HAVE_LASH 239 else { 240 aubio_lash_client = lash_init (lash_args, argv[0], 241 LASH_Config_Data_Set | LASH_Terminal, LASH_PROTOCOL (2, 0)); 242 if (!aubio_lash_client) { 243 fprintf (stderr, "%s: could not initialise lash\n", __FUNCTION__); 244 } 245 /* tell the lash server our client id */ 246 if (lash_enabled (aubio_lash_client)) { 247 lash_event_t *event = 248 (lash_event_t *) lash_event_new_with_type (LASH_Client_Name); 249 lash_event_set_string (event, "aubio"); 250 lash_send_event (aubio_lash_client, event); 251 pthread_create (&lash_thread, NULL, lash_thread_main, NULL); 252 } 253 } 254 #endif /* HAVE_LASH */ 255 256 uint_t i; 256 257 ibuf = new_fvec (overlap_size); 257 258 obuf = new_fvec (overlap_size); -
interfaces/python/demo_beat.py
r37eb9ce r3f16b61 26 26 caps = 'audio/x-raw-float, rate=44100, channels=1') 27 27 a.run() 28 print beats -
src/spectral/specdesc.c
r37eb9ce r3f16b61 274 274 onset_type = aubio_onset_default; 275 275 else { 276 AUBIO_ERR("unknown spectral descriptor type %s , using default.\n", onset_mode);276 AUBIO_ERR("unknown spectral descriptor type %s.\n", onset_mode); 277 277 onset_type = aubio_onset_default; 278 278 }
Note: See TracChangeset
for help on using the changeset viewer.