Changeset 71bc8b0
- Timestamp:
- Jan 12, 2017, 5:38:35 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:
- eda2fd0
- Parents:
- ed6b302
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/aubioonset.txt
red6b302 r71bc8b0 10 10 [-T time-format] 11 11 [-s sil] [-m] [-f] 12 [-j] [-v] [-h] 12 [-j] [-n miditap-note] [-V miditap-velo] 13 [-v] [-h] 13 14 14 15 DESCRIPTION … … 70 71 -j, --jack Use Jack input/output. You will need a Jack connection 71 72 controller to feed aubio some signal and listen to its output. 73 74 -n, --miditap-note Override note value for MIDI tap. Defaults to 69. 75 76 -V, --miditap-velop Override velocity value for MIDI tap. Defaults to 65. 72 77 73 78 -h, --help Print a short help message and exit. -
examples/parse_args.h
red6b302 r71bc8b0 118 118 #ifdef PROG_HAS_JACK 119 119 " -j --jack use Jack\n" 120 " -n --miditap-note MIDI note\n" 121 " -V --miditap-velo MIDI velocity\n" 120 122 #endif /* PROG_HAS_JACK */ 121 123 " -v --verbose be verbose\n" … … 136 138 "i:r:B:H:" 137 139 #ifdef PROG_HAS_JACK 138 "j "140 "jn:V:" 139 141 #endif /* PROG_HAS_JACK */ 140 142 #ifdef PROG_HAS_OUTPUT … … 165 167 #ifdef PROG_HAS_JACK 166 168 {"jack", 0, NULL, 'j'}, 169 {"miditap-note", 1, NULL, 'n'}, 170 {"miditap-velo", 1, NULL, 'V'}, 167 171 #endif /* PROG_HAS_JACK */ 168 172 #ifdef PROG_HAS_OUTPUT … … 208 212 usejack = 1; 209 213 break; 214 case 'n': 215 miditap_note = atoi (optarg); 216 break; 217 case 'V': 218 miditap_velo = atoi (optarg); 219 break; 210 220 case 'i': 211 221 source_uri = optarg;
Note: See TracChangeset
for help on using the changeset viewer.