Changeset e0a9fd2
- Timestamp:
- Dec 11, 2016, 11:21:55 PM (8 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, sampler, yinfft+
- Children:
- 671eae1
- Parents:
- e15d7d0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/aubioonset.txt
re15d7d0 re0a9fd2 53 53 the number of incorrect detections. Defaults to 0.3. 54 54 55 -M, --minioi value Set the minimum inter-onset interval, in millisecond,56 the shortest interval between two consecutive onsets. Defaults to 12.55 -M, --minioi value Set the minimum inter-onset interval, in seconds, the 56 shortest interval between two consecutive onsets. Defaults to 0.020 57 57 58 58 -s, --silence sil Set the silence threshold, in dB, under which the onset -
examples/aubioonset.c
re15d7d0 re0a9fd2 76 76 aubio_onset_set_silence (o, silence_threshold); 77 77 if (onset_minioi != 0.) 78 aubio_onset_set_minioi_ ms (o, onset_minioi);78 aubio_onset_set_minioi_s (o, onset_minioi); 79 79 80 80 onset = new_fvec (1); -
examples/parse_args.h
re15d7d0 re0a9fd2 94 94 " a value between 0.1 (more detections) and 1 (less); default=0.3\n" 95 95 " -M --minioi set minimum inter-onset interval\n" 96 " a value in millisecond; default=12.\n"96 " a value in second; default=0.012\n" 97 97 #endif /* PROG_HAS_ONSET */ 98 98 #ifdef PROG_HAS_PITCH … … 232 232 onset_threshold = (smpl_t) atof (optarg); 233 233 break; 234 case 'M': /* threshold value for onset*/234 case 'M': /* minimum inter-onset-interval */ 235 235 onset_minioi = (smpl_t) atof (optarg); 236 236 break;
Note: See TracChangeset
for help on using the changeset viewer.