@thi.ng/dsp-io-wav 2.1.62 → 2.1.63
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/CHANGELOG.md +1 -1
- package/README.md +13 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -14,6 +14,7 @@ This project is part of the
|
|
|
14
14
|
- [Status](#status)
|
|
15
15
|
- [Installation](#installation)
|
|
16
16
|
- [Dependencies](#dependencies)
|
|
17
|
+
- [Usage examples](#usage-examples)
|
|
17
18
|
- [API](#api)
|
|
18
19
|
- [Authors](#authors)
|
|
19
20
|
- [License](#license)
|
|
@@ -58,6 +59,18 @@ Package sizes (brotli'd, pre-treeshake): ESM: 488 bytes
|
|
|
58
59
|
- [@thi.ng/transducers](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers)
|
|
59
60
|
- [@thi.ng/transducers-binary](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers-binary)
|
|
60
61
|
|
|
62
|
+
## Usage examples
|
|
63
|
+
|
|
64
|
+
Several demos in this repo's
|
|
65
|
+
[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
|
|
66
|
+
directory are using this package.
|
|
67
|
+
|
|
68
|
+
A selection:
|
|
69
|
+
|
|
70
|
+
| Screenshot | Description | Live demo | Source |
|
|
71
|
+
|:--------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------|:---------------------------------------------------|:--------------------------------------------------------------------------------|
|
|
72
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/render-audio.png" width="240"/> | Generative audio synth offline renderer and WAV file export | [Demo](https://demo.thi.ng/umbrella/render-audio/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/render-audio) |
|
|
73
|
+
|
|
61
74
|
## API
|
|
62
75
|
|
|
63
76
|
[Generated API docs](https://docs.thi.ng/umbrella/dsp-io-wav/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/dsp-io-wav",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.63",
|
|
4
4
|
"description": "WAV file format generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"@thi.ng/api": "^8.9.5",
|
|
38
38
|
"@thi.ng/binary": "^3.3.33",
|
|
39
39
|
"@thi.ng/errors": "^2.3.5",
|
|
40
|
-
"@thi.ng/transducers": "^8.6.
|
|
41
|
-
"@thi.ng/transducers-binary": "^2.1.
|
|
40
|
+
"@thi.ng/transducers": "^8.6.5",
|
|
41
|
+
"@thi.ng/transducers-binary": "^2.1.63"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@microsoft/api-extractor": "^7.36.4",
|
|
@@ -89,5 +89,5 @@
|
|
|
89
89
|
"parent": "@thi.ng/dsp",
|
|
90
90
|
"year": 2020
|
|
91
91
|
},
|
|
92
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "1bbef970bab7f7def0700e587cf0471e1e1ef9f3\n"
|
|
93
93
|
}
|