forked from aosp-mirror/platform_external_sonivox
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added sonivoxrender program man page
Closes #24
- Loading branch information
Showing
4 changed files
with
226 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
.\" Automatically generated by Pandoc 2.14.0.3 | ||
.\" | ||
.TH "SONIVOXRENDER" "1" "October 6, 2024" "sonivox 3.6.14.0" "Sonivox MIDI File Renderer" | ||
.hy | ||
.SH NAME | ||
.PP | ||
\f[B]sonivoxrender\f[R] \[em] Render standard MIDI files into raw PCM | ||
audio | ||
.SH SYNOPSIS | ||
.PP | ||
\f[B]sonivoxrender\f[R] [\f[B]-h\f[R]] [\f[B]-d\f[R] \f[I]file.dls\f[R]] | ||
[\f[B]-r\f[R] \f[I]0..4\f[R]] [\f[B]-w\f[R] \f[I]0..32765\f[R]] | ||
\f[I]midi_file\f[R] | ||
.SH DESCRIPTION | ||
.PP | ||
This program is a MIDI file renderer based on the sonivox synthesizer | ||
library. | ||
It reads .MID (Standard MIDI Files) file format, and writes an audio | ||
stream to the standard output as raw 16 bit stereo PCM samples. | ||
.SS Options | ||
.TP | ||
-h | ||
Prints brief usage information. | ||
.TP | ||
-d \f[I]file.dls\f[R] | ||
Optional DLS soundfont file name. | ||
If not provided, it uses an internal embedded soundfont. | ||
.TP | ||
-r \f[I]reverb_preset\f[R] | ||
Reverb preset between 0 and 4: 0=no, 1=large hall, 2=hall, 3=chamber, | ||
4=room. | ||
.TP | ||
-w \f[I]reverb_wet\f[R] | ||
Reverb wet level between 0 and 32765. | ||
.SS Arguments | ||
.TP | ||
\f[I]midi_file\f[R] | ||
Input MID file name. | ||
.SH EXAMPLES | ||
.PP | ||
The following examples assume the default option USE_44KHZ=ON, which | ||
means an output sample rate = 44100 Hz. | ||
.PP | ||
Example 1: Render a MIDI file and save the rendered audio as a raw audio | ||
file: | ||
.IP | ||
.nf | ||
\f[C] | ||
$ sonivoxrender ants.mid > ants.pcm | ||
\f[R] | ||
.fi | ||
.PP | ||
Example 2: pipe the rendered audio thru the Linux ALSA \f[B]aplay\f[R] | ||
utility: | ||
.IP | ||
.nf | ||
\f[C] | ||
$ sonivoxrender ants.mid | aplay -c 2 -f S16_LE -r 44100 | ||
\f[R] | ||
.fi | ||
.PP | ||
is equivalent to: | ||
.IP | ||
.nf | ||
\f[C] | ||
$ sonivoxrender ants.mid | aplay -f cd | ||
\f[R] | ||
.fi | ||
.PP | ||
Example 3: pipe the rendered audio thru the \f[B]lame\f[R] utility | ||
creating a MP3 file: | ||
.IP | ||
.nf | ||
\f[C] | ||
$ sonivoxrender ants.mid | lame -r -s 44100 - ants.mp3 | ||
\f[R] | ||
.fi | ||
.PP | ||
Example 4: pipe the rendered audio thru the \f[B]sox\f[R] utility | ||
creating a WAV file: | ||
.IP | ||
.nf | ||
\f[C] | ||
$ sonivoxrender ants.mid | sox -t s16 -c 2 -r 44100 - ants.wav | ||
\f[R] | ||
.fi | ||
.PP | ||
Example 5: pipe the rendered audio thru the PulseAudio\[cq]s | ||
\f[B]pacat\f[R] utility: | ||
.IP | ||
.nf | ||
\f[C] | ||
$ sonivoxrender ants.mid | pacat | ||
\f[R] | ||
.fi | ||
.SH BUGS | ||
.PP | ||
See Tickets at GitHub <https://github.com/pedrolcl/sonivox/issues/> | ||
.SH LICENSE AND COPYRIGHT | ||
.PP | ||
Licensed under the Apache License, Version 2.0 | ||
.PP | ||
Copyright (c) 2022-2024 Pedro L\['o]pez-Cabanillas and contributors | ||
.SH AUTHORS | ||
Pedro L\['o]pez-Cabanillas <[email protected]>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
% SONIVOXRENDER(1) sonivoxrender 0.0.0 | Sonivox MIDI File Renderer | ||
% Pedro López-Cabanillas <[email protected]> | ||
|
||
# NAME | ||
|
||
**sonivoxrender** — Render standard MIDI files into raw PCM audio | ||
|
||
# SYNOPSIS | ||
|
||
| **sonivoxrender** [**-h**] [**-d** _file.dls_] [**-r** _0..4_] [**-w** _0..32765_] _midi_file_ | ||
|
||
# DESCRIPTION | ||
|
||
This program is a MIDI file renderer based on the sonivox synthesizer library. | ||
It reads .MID (Standard MIDI Files) file format, and writes an audio stream to the standard output as raw 16 bit stereo PCM samples. | ||
|
||
## Options | ||
|
||
-h | ||
|
||
: Prints brief usage information. | ||
|
||
-d _file.dls_ | ||
|
||
: Optional DLS soundfont file name. If not provided, it uses an internal embedded soundfont. | ||
|
||
-r _reverb_preset_ | ||
|
||
: Reverb preset between 0 and 4: 0=no, 1=large hall, 2=hall, 3=chamber, 4=room. | ||
|
||
-w _reverb_wet_ | ||
|
||
: Reverb wet level between 0 and 32765. | ||
|
||
## Arguments | ||
|
||
_midi_file_ | ||
|
||
: Input MID file name. | ||
|
||
# EXAMPLES | ||
|
||
The following examples assume the default option USE_44KHZ=ON, which means an output sample rate = 44100 Hz. | ||
|
||
Example 1: Render a MIDI file and save the rendered audio as a raw audio file: | ||
|
||
$ sonivoxrender ants.mid > ants.pcm | ||
|
||
Example 2: pipe the rendered audio thru the Linux ALSA **aplay** utility: | ||
|
||
$ sonivoxrender ants.mid | aplay -c 2 -f S16_LE -r 44100 | ||
|
||
is equivalent to: | ||
|
||
$ sonivoxrender ants.mid | aplay -f cd | ||
|
||
Example 3: pipe the rendered audio thru the **lame** utility creating a MP3 file: | ||
|
||
$ sonivoxrender ants.mid | lame -r -s 44100 - ants.mp3 | ||
|
||
Example 4: pipe the rendered audio thru the **sox** utility creating a WAV file: | ||
|
||
$ sonivoxrender ants.mid | sox -t s16 -c 2 -r 44100 - ants.wav | ||
|
||
Example 5: pipe the rendered audio thru the PulseAudio's **pacat** utility: | ||
|
||
$ sonivoxrender ants.mid | pacat | ||
|
||
# BUGS | ||
|
||
See Tickets at GitHub <https://github.com/pedrolcl/sonivox/issues/> | ||
|
||
# LICENSE AND COPYRIGHT | ||
|
||
Licensed under the Apache License, Version 2.0 | ||
|
||
Copyright (c) 2022-2024 Pedro López-Cabanillas and contributors |