-
-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Various minor formatting and wording fixes. Added missing description for set_oversampling #1268
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,34 @@ | ||
.TH sfizz_jack 1 "@MAN_TODAY@" "@CMAKE_PROJECT_VERSION@" "sfizz_jack man page" | ||
.TH sfizz_jack 1 "@MAN_TODAY@" "@CMAKE_PROJECT_VERSION@" "sfizz" | ||
.SH NAME | ||
sfizz_jack \- Launch a sfizz instance as a JACK client | ||
sfizz_jack \- launch a sfizz instance as a JACK client | ||
.SH SYNOPSIS | ||
sfizz_jack [FILE] [OPTIONS...] | ||
.B sfizz_jack | ||
[\fIFILE\fR] [\fIOPTIONS\fR...] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. Instead of \fR I believe we can also say \fP (previous font, probably; I’ll need to dig out the manual to be sure), which undoes the most recent font change. |
||
.SH DESCRIPTION | ||
sfizz_jack wraps the sfizz SFZ library in a JACK client that can be controlled by a text interface. | ||
.SH OPTIONS | ||
.IP FILE | ||
An optional SFZ file name to load at firsts | ||
.IP "--client_name" | ||
.IP \fIFILE\fR | ||
An optional SFZ file name to load on startup | ||
.IP "\fB--client_name\fR" | ||
Name for the JACK client | ||
.IP "--num_voices NUMBER" | ||
.IP "\fB--num_voices\fR \fINUMBER\fR" | ||
Change the maximum polyphony | ||
.IP "--preload_size NUMBER" | ||
.IP "\fB--preload_size\fR \fINUMBER\fR" | ||
Bytes to preload in cache for samples | ||
.IP "--state" | ||
Output the state in the JACK loop | ||
.IP "--jack_autoconnect" | ||
.IP "\fB--state\fR" | ||
Periodically output the state of the synth | ||
.IP "\fB--jack_autoconnect\fR" | ||
Autoconnect the JACK outputs | ||
.SH TEXT INTERFACE | ||
It is possible it interact with the JACK client through the standard input. | ||
The possible commands are | ||
.IP "load_instrument FILE" | ||
.IP "load_instrument \fIFILE\fR" | ||
Load an instrument | ||
.IP "set_preload_size NUMBER" | ||
Set the number of bytes to preload in cache for samples | ||
.IP "set_voices NUMBER" | ||
.IP "set_oversampling \fINUMBER\fR" | ||
Change the oversampling factor | ||
.IP "set_preload_size \fINUMBER\fR" | ||
Set the number of bytes to preload in the cache for samples | ||
.IP "set_voices \fINUMBER\fR" | ||
Change the maximum polyphony | ||
.IP quit | ||
Quit | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm clueless about man pages. This changes the title of the page?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It changes the section title (the page title remains “sfizz_jack”). It used to say it belonged to the “sfizz_jack man page” section, which made little sense; the patch changes it to say it belongs to the “sfizz” section.