summaryrefslogtreecommitdiffabout
path: root/man
authorMichael Krelin <hacker@klever.net>2006-08-11 16:01:56 (UTC)
committer Michael Krelin <hacker@klever.net>2006-08-11 16:01:56 (UTC)
commit0c21a7a0d5b84dc6726462f0fbe51b8c32433262 (patch) (unidiff)
tree9df6334cb1a61efebe68f7bcef9aa119a823626a /man
parent9bcc235e575a95989a5903394c127accbeef2e0f (diff)
downloadmidillo-0c21a7a0d5b84dc6726462f0fbe51b8c32433262.zip
midillo-0c21a7a0d5b84dc6726462f0fbe51b8c32433262.tar.gz
midillo-0c21a7a0d5b84dc6726462f0fbe51b8c32433262.tar.bz2
initial commit into repository0.0
Diffstat (limited to 'man') (more/less context) (ignore whitespace changes)
-rw-r--r--man/.gitignore2
-rw-r--r--man/Makefile.am3
-rw-r--r--man/midi2f0.185
-rw-r--r--man/mididump.172
-rw-r--r--man/midifilter.193
5 files changed, 255 insertions, 0 deletions
diff --git a/man/.gitignore b/man/.gitignore
new file mode 100644
index 0000000..3dda729
--- a/dev/null
+++ b/man/.gitignore
@@ -0,0 +1,2 @@
1Makefile.in
2Makefile
diff --git a/man/Makefile.am b/man/Makefile.am
new file mode 100644
index 0000000..13bcb82
--- a/dev/null
+++ b/man/Makefile.am
@@ -0,0 +1,3 @@
1man_MANS = midi2f0.1 midifilter.1 mididump.1
2
3EXTRA_DIST=${man_MANS}
diff --git a/man/midi2f0.1 b/man/midi2f0.1
new file mode 100644
index 0000000..ae89ea8
--- a/dev/null
+++ b/man/midi2f0.1
@@ -0,0 +1,85 @@
1.TH midi2f0 1 "August 11th, 2006" "midi2f0(1)" "Klever Group (http://www.klever.net/)"
2.hla en
3
4.SH NAME
5
6midi2f0 \- Standard MIDI File converter
7
8.SH SYNOPSYS
9
10\fBmidi2f0\fR
11[\fB-h\fR | \fB--help\fR | \fB--usage\fR]
12[\fB-V\fR | \fB--version\fR]
13[\fB-L\fR | \fB--license\fR]
14[<input-file>[ <output-file>]]
15
16.SH DESCRIPTION
17
18midi2f0 converts Standard MIDI Files to Standard MIDI Files format 0, which
19is single track midi file. You may want to perform such conversion before
20putting the file on the memory card for some MIDI keyboard consumption.
21
22if you want to load file from standard input or dump results to standard output
23just omit corresponding file or specify '-'.
24
25.SH OPTIONS
26
27.TP
28\fB-h\fR, \fB--help\fR, \fB--usage\fR
29Display short usage message and exit.
30.TP
31\fB-V\fR, \fB--version\fR
32Report version and exit.
33.TP
34\fB-L\fR, \fB--license\fR
35Show licensing terms.
36
37.SH EXAMPLE
38
39.TP
40.nf
41\fBmidi2f0\fR midifile.mid \\
42| \fBmidifilter\fR \fB-f\fR \fBsysex,meta_unknown,meta_obsolete,meta_texts\fR \\
43>/mnt/card/casio_md/midifile.mid
44.fi
45
46This command converts file to SMF0 file, strips events not understood and not
47used by the keyboard and puts it to the memory card.
48
49.SH EXIT STATUS
50
51Zero in case of success, non-zero otherwise.
52
53.SH AUTHOR
54
55Written by Michael 'hacker' Krelin <hacker@klever.net>
56
57.SH COPYRIGHT
58
59Copyright (c) 2006 Klever Group (http://www.klever.net/)
60
61Permission is hereby granted, free of charge, to any person obtaining a copy of
62this software and associated documentation files (the "Software"), to deal in
63the Software without restriction, including without limitation the rights to
64use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
65of the Software, and to permit persons to whom the Software is furnished to do
66so, subject to the following conditions:
67
68The above copyright notice and this permission notice shall be included in all
69copies or substantial portions of the Software.
70
71THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
72IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
73FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
74AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
75LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
76OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
77SOFTWARE.
78
79.SH BUGS
80
81You tell me. Send reports to <midillo-bugs@klever.net>
82
83.SH SEE ALSO
84\fBmidifilter\fR(1)
85\fBmididump\fR(1)
diff --git a/man/mididump.1 b/man/mididump.1
new file mode 100644
index 0000000..e236ddc
--- a/dev/null
+++ b/man/mididump.1
@@ -0,0 +1,72 @@
1.TH mididump 1 "August 11th, 2006" "mididump(1)" "Klever Group (http://www.klever.net/)"
2.hla en
3
4.SH NAME
5
6mididump \- Standard MIDI File dump
7
8.SH SYNOPSYS
9
10\fBmididump\fR
11[\fB-h\fR | \fB--help\fR | \fB--usage\fR]
12[\fB-V\fR | \fB--version\fR]
13[\fB-L\fR | \fB--license\fR]
14[<input-file>[ <output-file>]]
15
16.SH DESCRIPTION
17
18mididump outputs ascii representation of the input SMF file. At this point it
19may only be useful for debugging purpose.
20
21if you want to load file from standard input or dump results to standard output
22just omit corresponding file or specify '-'.
23
24.SH OPTIONS
25
26.TP
27\fB-h\fR, \fB--help\fR, \fB--usage\fR
28Display short usage message and exit.
29.TP
30\fB-V\fR, \fB--version\fR
31Report version and exit.
32.TP
33\fB-L\fR, \fB--license\fR
34Show licensing terms.
35
36.SH EXIT STATUS
37
38Zero in case of success, non-zero otherwise.
39
40.SH AUTHOR
41
42Written by Michael 'hacker' Krelin <hacker@klever.net>
43
44.SH COPYRIGHT
45
46Copyright (c) 2006 Klever Group (http://www.klever.net/)
47
48Permission is hereby granted, free of charge, to any person obtaining a copy of
49this software and associated documentation files (the "Software"), to deal in
50the Software without restriction, including without limitation the rights to
51use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
52of the Software, and to permit persons to whom the Software is furnished to do
53so, subject to the following conditions:
54
55The above copyright notice and this permission notice shall be included in all
56copies or substantial portions of the Software.
57
58THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
59IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
60FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
61AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
62LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
63OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
64SOFTWARE.
65
66.SH BUGS
67
68You tell me. Send reports to <midillo-bugs@klever.net>
69
70.SH SEE ALSO
71\fBmidi2f0\fR(1)
72\fBmidifilter\fR(1)
diff --git a/man/midifilter.1 b/man/midifilter.1
new file mode 100644
index 0000000..eddd66d
--- a/dev/null
+++ b/man/midifilter.1
@@ -0,0 +1,93 @@
1.TH midifilter 1 "August 11th, 2006" "midifilter(1)" "Klever Group (http://www.klever.net/)"
2.hla en
3
4.SH NAME
5
6midifilter \- Standard MIDI File filter
7
8.SH SYNOPSYS
9
10\fBmidifilter\fR
11[\fB-h\fR | \fB--help\fR | \fB--usage\fR]
12[\fB-V\fR | \fB--version\fR]
13[\fB-L\fR | \fB--license\fR]
14[\fB-f\fR \fI<filters>\fR | \fB--filter=\fI<filters>\fR]
15[\fB-l\fR | \fB--list-filters\fR]
16[<input-file>[ <output-file>]]
17
18.SH DESCRIPTION
19
20midifilter simply strips unwanted events from the Standard MIDI File. You may
21wish to strip some certain events if you know the events may break whatever
22will do any further processing of the file or just to reduce file size.
23
24if you want to load file from standard input or dump results to standard output
25just omit corresponding file or specify '-'.
26
27.SH OPTIONS
28
29.TP
30\fB-h\fR, \fB--help\fR, \fB--usage\fR
31Display short usage message and exit.
32.TP
33\fB-V\fR, \fB--version\fR
34Report version and exit.
35.TP
36\fB-L\fR, \fB--license\fR
37Show licensing terms.
38.TP
39\fB-f\fR \fI<filters>\fR, \fB--filter=\fI<filters\fR
40Specify the list of comma-separated filters to apply.
41.TP
42\fB-l\fR, \fB--list-filters\fR
43List available filters.
44
45.SH EXAMPLE
46
47.TP
48.nf
49\fBmidi2f0\fR midifile.mid \\
50| \fBmidifilter\fR \fB-f\fR \fBsysex,meta_unknown,meta_obsolete,meta_texts\fR \\
51>/mnt/card/casio_md/midifile.mid
52.fi
53
54This command converts file to SMF0 file, strips events not understood and not
55used by the keyboard and puts it to the memory card.
56
57.SH EXIT STATUS
58
59Zero in case of success, non-zero otherwise.
60
61.SH AUTHOR
62
63Written by Michael 'hacker' Krelin <hacker@klever.net>
64
65.SH COPYRIGHT
66
67Copyright (c) 2006 Klever Group (http://www.klever.net/)
68
69Permission is hereby granted, free of charge, to any person obtaining a copy of
70this software and associated documentation files (the "Software"), to deal in
71the Software without restriction, including without limitation the rights to
72use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
73of the Software, and to permit persons to whom the Software is furnished to do
74so, subject to the following conditions:
75
76The above copyright notice and this permission notice shall be included in all
77copies or substantial portions of the Software.
78
79THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
80IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
81FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
82AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
83LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
84OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
85SOFTWARE.
86
87.SH BUGS
88
89You tell me. Send reports to <midillo-bugs@klever.net>
90
91.SH SEE ALSO
92\fBmidi2f0\fR(1)
93\fBmididump\fR(1)