forked from musescore/sftools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sf3convert.1
90 lines (90 loc) · 1.84 KB
/
sf3convert.1
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
.\" Copyright © 2018 mirabilos <[email protected]>
.\"
.\" This manual page is provided under the same terms as the tool it describes.
.Dd March 5, 2018
.Dt SF3CONVERT 1
.Os Debian
.Sh NAME
.Nm sf3convert
.Nd SoundFont conversion utility
.Sh SYNOPSIS
.Nm
.Op Fl cdsxz
.Op Fl a Ar ampl
.Op Fl p Ar pres
.Op Fl S Ar number
.Op Fl q Ar qual
.Ar infile
.Op Ar outfile
.Sh DESCRIPTION
The
.Nm
utility converts an SF2 format SoundFont; it can compress it
into SF3, encode as C for embedding into a binary, or as XML.
.Pp
The options are as follows:
.Bl -tag -width xxx
.It Fl a Ar ampl
Set the pre-compression amplification to
.Ar ampl
.Pq default \-1.0
dB.
.It Fl c
Output C code.
.It Fl d
Dump presets.
.It Fl p Ar pres
Append
.Ar pres
to the list of presets.
.It Fl q Ar qual
Set the Vorbis quality to
.Ar qual
.Pq default 0.3 .
.It Fl S Ar number
Use
.Ar number
as the OGG stream serial number instead of a time-based random one.
.It Fl s
Create a small soundfont (one instrument/preset), pan to 0.
.It Fl x
Output XML.
.It Fl z
Compress the soundfont.
.El
.Pp
The
.Fl c ,
.Fl d
and
.Fl z
options are mutually exclusive.
XML output needs
.Fl z
but does not seem to compress.
.Sh CAVEATS
Raising the quality to 0.6 might be necessary to avoid artifacts;
this however increases the size of the generated SF3 by about a third
(to about fifteen percent of the SF2 size).
.Pp
There is no formal specification of the SF3 format yet.
Differences:
.Bl -bullet
.It
The samples' waveform data is stored using the OGG container
format with the Vorbis codec.
(Other codecs supporting the OGG container could be used,
but the current code uses OGG Vorbis.)
.It
Loop start and end are stored based on the beginning of the
corresponding sample, not based on the beginning of the
.Li smpl
chunk.
.It
24-bit mode is disabled.
.It
Sample links are removed.
.El
.Pp
Note that this list is
.Em incomplete .