1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
.TH "DRUMGIZMO" "1" "4 February 2015" "drumgizmo 0.9.7" ""
.SH NAME
drumgizmo \- drum application
.SH SYNOPSIS
\fBdrumgizmo\fR [OPTIONS] \fIdrumkitfile
.SH "DESCRIPTION"
.PP
\fBDrumGizmo\fR is an open source cross-platform drum plugin and stand-alone application. It is comparable to several commercial drum plugin products.
.PP
DrumGizmo uses an open drumkit file format, allowing the community to create their own drumkits. It has multichannel output, making it possible to mix it just the way you would a real drumkit. The optional built-in humanizer analyzes the midi notes, adjusting velocities on-the-fly. This client can be a stand-alone midi renderer, generating .wav files, 1 for each channel. Or use DrumGizmo as a software sampler for an electronic drumkit. There are also plugin versions available.
.SH "OPTIONS"
.TP
\fB-p,
Load entire kit audio files into memory (uses A LOT of memory).
.TP
\fB-i,
Use said event input engine.
.TP
\fB-I,
Set input engine parameters.
.TP
.SS
\fBjackmidi:
midimap=<midimapfile>
.TP
.SS
\fBmidifile:
file=<midifile>, speed=<tempo> (default 1.0)
.br
track=<miditrack> (default -1, all tracks)
.br
midimap=<midimapfile>, loop=<true|false>
.TP
.SS
\fBtest:
p=<hit_propability> (default 0.1)
.br
instr=<instrument> (default -1, random instrument)
.br
len=<seconds> (default -1, forever)
.TP
.SS
\fBdummy:
.TP
\fB-o,
Use said audio output engine.
.TP
\fB-O,
Set output engine parameters.
.TP
.SS
\fBalsa:
dev=<device> (default 'default')
.br
frames=<frames> (default 32)
.br
srate=<samplerate> (default 441000)
.TP
.SS
\fBwavfile:
file=<filename> (default 'output')
.br
srate=<samplerate> (default 44100)
.TP
.SS
\fBjackaudio:
.TP
.SS
\fBdummy:
.TP
\fB-e,
Number of samples to process, -1: infinite.
.TP
\fB-v,
Print drumgizmo version and exit.
.TP
\fB-h,
Print command line help and exit.
.TP
\fB\fIdrumkitfile
Load the drumkitfile.
.El
.Sh "EXAMPLES"
Render midifile to wav files:
.Bb -literal -offset indent -compact
drumgizmo -p -i midifile -I file=file.mid,midimap=midimap.xml -o wavfile -O file=file.wav drumkit.xml
.Ed
Recieve midi from Jack and send audio output to speakers:
drumgizmo -p -i jackmidi -I midimap=midimap.xml -o jackaudio drumkit.xml
.SH "BUGS"
Report bugs to http://www.drumgizmo.org/wiki/doku.php?id=bugs.
.SH "ADDITIONAL INFORMATION"
For further information, visit the website http://www.drumgizmo.org/.
|