diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2019-06-16 10:59:06 +0200 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2019-06-16 10:59:06 +0200 | 
| commit | 13d1831777c6a64fb9c4f27bf265b0c21a2b645f (patch) | |
| tree | 19b63e5dbe6e880c4ced97aa4f4562b19fbdba17 | |
| parent | 25b398ea000b5529084d985bd14ed066a81578d3 (diff) | |
Add man page description of the new -p/--parameters cli argument.
| -rw-r--r-- | drumgizmo/drumgizmoc.cc | 2 | ||||
| -rw-r--r-- | man/drumgizmo.1 | 17 | ||||
| -rw-r--r-- | version.h | 2 | 
3 files changed, 19 insertions, 2 deletions
| diff --git a/drumgizmo/drumgizmoc.cc b/drumgizmo/drumgizmoc.cc index 93b8e31..07407bd 100644 --- a/drumgizmo/drumgizmoc.cc +++ b/drumgizmo/drumgizmoc.cc @@ -116,7 +116,7 @@ static std::string usage(const std::string& name)  		"  -T, --timing-humanizerparms parmlist\n"  		"                         Timing humanizer options.\n"  		"  -p, --parameters parmlist\n" -		"                         Parameters for sample selection algoritm." +		"                         Parameters for sample selection algorithm."  		"  -v, --version          Print version information and exit.\n"  		"  -h, --help             Print this message and exit.\n"  		"\n" diff --git a/man/drumgizmo.1 b/man/drumgizmo.1 index cf75093..01b5934 100644 --- a/man/drumgizmo.1 +++ b/man/drumgizmo.1 @@ -155,6 +155,23 @@ Timing humanizer options.  \fBregain\fR=<val> (Control how fast the drummer catches up the timing. [0; 1])  .RE +\fB-p, --parameters parmlist\fR +.RS 7 +Parameters for the sample selection algorithm. +.P +\fBclose\fR=<val> (The importance given to choosing a sample close to +the actual velocity value (after humanization) [0; 16]) +.P +\fBdiverse\fR=<val> (The importance given to choosing samples which +haven't been played recently [0; 0.5]) +.P +\fBrandom\fR=<val> (The amount of randomness added [0; 0.5]) +.P +\fBstddev\fR=<val> (The standard-deviation for the sample +selection. Higher value makes it more likely that a sample further +away from the input velocity will be played [0; 4.5]) + +.RE  \fB-v, --version\fR  .RS 7  Print drumgizmo version and exit. @@ -1 +1 @@ -#define VERSION "0.9.16" +#define VERSION "0.9.17" | 
