spessoplayer 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/COMMAND-LINE-OPTIONS.md +59 -0
- package/LICENSE +674 -0
- package/NOTICE +8 -0
- package/README.md +29 -0
- package/audioBuffer.mjs +284 -0
- package/cli.mjs +657 -0
- package/install.mjs +81 -0
- package/main.mjs +815 -0
- package/package.json +33 -0
- package/uninstall.mjs +80 -0
- package/utils.mjs +317 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
## spessoplayer
|
|
2
|
+
|
|
3
|
+
### spessoplayer [options] \<midi\> \<soundfont\> [outFile]
|
|
4
|
+
|
|
5
|
+
### --volume, /volume, -v, /v:
|
|
6
|
+
Volume to set (*default: 100%*)
|
|
7
|
+
|
|
8
|
+
Available formats:
|
|
9
|
+
- **dB** (*example -10dB*);
|
|
10
|
+
- **percentages** (*example 70%*);
|
|
11
|
+
- **decimals** (*example 0.9*);
|
|
12
|
+
|
|
13
|
+
### --reverb-volume, /reverb-volume, -rvb, /rvb:
|
|
14
|
+
Volume to set for reverb (*default: none*)
|
|
15
|
+
|
|
16
|
+
Same formats as volume
|
|
17
|
+
|
|
18
|
+
### --effects, /effects, -e, /e:
|
|
19
|
+
Adds any effects that SoX provides (*e.g "reverb,fade 1"*)
|
|
20
|
+
|
|
21
|
+
### --loop, /loop, -l, /l:
|
|
22
|
+
Loop x amount of times (*default: 0*)
|
|
23
|
+
|
|
24
|
+
<sub>(It might be slow with bigger numbers)</sub>
|
|
25
|
+
|
|
26
|
+
### --loop-start, /loop-start, -ls, /ls:
|
|
27
|
+
When the loop starts
|
|
28
|
+
|
|
29
|
+
### --loop-end, /loop-end, -le, /le:
|
|
30
|
+
When the loop ends
|
|
31
|
+
|
|
32
|
+
### --sample-rate, /sample-rate, -r, /r:
|
|
33
|
+
Sample rate to use (*default: 48000*)
|
|
34
|
+
|
|
35
|
+
<sub>(It might be slow with bigger numbers for players like mpv)</sub>
|
|
36
|
+
|
|
37
|
+
<sub>(Some players might downsize it to a smaller frequency)</sub>
|
|
38
|
+
|
|
39
|
+
### --format, /format, -f, /f:
|
|
40
|
+
Format to use for stdout (*default: wav*)
|
|
41
|
+
|
|
42
|
+
Available formats:
|
|
43
|
+
- **wav**;
|
|
44
|
+
- **mp3**;
|
|
45
|
+
- **flac**;
|
|
46
|
+
- **pcm (s32le)**;
|
|
47
|
+
|
|
48
|
+
### --verbose, /verbose, -v, /v:
|
|
49
|
+
Sets the verbosity (*default: 2*)
|
|
50
|
+
|
|
51
|
+
### --log-file, /log-file, -lf, /lf:
|
|
52
|
+
Sets path to the log file (*default: ./spesso.log*)
|
|
53
|
+
<sub>(Meanwhile it writes to file, it also prints to stderr)</sub>
|
|
54
|
+
|
|
55
|
+
### --help, /help, -h, /h, /?:
|
|
56
|
+
Shows this help message
|
|
57
|
+
|
|
58
|
+
### --version, /version:
|
|
59
|
+
Shows the installed version
|