@marmooo/soundfont-split 0.0.1 → 0.0.2
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/README.md +1 -1
- package/esm/cli.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ Options:
|
|
|
59
59
|
-V, --version show version
|
|
60
60
|
-q, --quality Vorbis VBR quality ([-1, 10], default 4)
|
|
61
61
|
-c, --concurrency max parallel sample encodes (global across presets)
|
|
62
|
-
|
|
62
|
+
default: hardwareConcurrency or 4
|
|
63
63
|
-r, --recompress re-encode already-compressed (SF3) samples at
|
|
64
64
|
--quality instead of copying them through as-is
|
|
65
65
|
default: false
|
package/esm/cli.js
CHANGED
|
@@ -3,7 +3,7 @@ import "./_dnt.polyfills.js";
|
|
|
3
3
|
import * as dntShim from "./_dnt.shims.js";
|
|
4
4
|
import { parseArgs } from "./deps/jsr.io/@std/cli/1.0.32/mod.js";
|
|
5
5
|
import { splitSoundFont } from "./src/mod.js";
|
|
6
|
-
const VERSION = "0.0.
|
|
6
|
+
const VERSION = "0.0.2";
|
|
7
7
|
const args = parseArgs(dntShim.Deno.args, {
|
|
8
8
|
string: ["quality", "concurrency"],
|
|
9
9
|
boolean: ["version", "help", "recompress"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marmooo/soundfont-split",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Split a SoundFont (SF2 / SF3) into per-preset SF3 files.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@marmooo/sf3-codec": "^0.0.2",
|
|
29
|
-
"@marmooo/soundfont": "^0.3.
|
|
29
|
+
"@marmooo/soundfont": "^0.3.3",
|
|
30
30
|
"@deno/shim-deno": "~0.18.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|