@audio/reverb 1.0.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/LICENSE +40 -0
- package/README.md +13 -0
- package/index.js +10 -0
- package/package.json +51 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Kṛṣnized
|
|
2
|
+
|
|
3
|
+
This is a reminder that, in the absolute sense, all results of work belong to the Supreme.
|
|
4
|
+
|
|
5
|
+
While software and intellectual property (IP) require a formal license to define authorship,
|
|
6
|
+
responsibilities, or distribution limitations, these are temporary material designations.
|
|
7
|
+
The origin and destination of all ideas, as well as the ultimate owner of all results,
|
|
8
|
+
is the Supreme. The most meaningful action is to dedicate these results to the Supreme.
|
|
9
|
+
This process is known as Karma-Yoga and is described in BG 3.9, BG 12.10 and BG 18.46.
|
|
10
|
+
|
|
11
|
+
"Work done as a sacrifice for the Supreme must be performed;
|
|
12
|
+
otherwise, work binds one to the material world."
|
|
13
|
+
|
|
14
|
+
This license does not override or alter the terms specified by the material-level license below.
|
|
15
|
+
|
|
16
|
+
ॐ
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
MIT License
|
|
21
|
+
|
|
22
|
+
Copyright (c) Dmitry Iv
|
|
23
|
+
|
|
24
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
25
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
26
|
+
in the Software without restriction, including without limitation the rights
|
|
27
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
28
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
29
|
+
furnished to do so, subject to the following conditions:
|
|
30
|
+
|
|
31
|
+
The above copyright notice and this permission notice shall be included in all
|
|
32
|
+
copies or substantial portions of the Software.
|
|
33
|
+
|
|
34
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
35
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
36
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
37
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
38
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
39
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
40
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @audio/reverb
|
|
2
|
+
|
|
3
|
+
> Reverberation algorithms — one atom per kind.
|
|
4
|
+
|
|
5
|
+
| Package | Status | What |
|
|
6
|
+
|---|---|---|
|
|
7
|
+
| `@audio/reverb-schroeder` | ✔ | 4 combs + 2 allpass (extracted from audio-effect) |
|
|
8
|
+
| `@audio/reverb-freeverb` | planned | Schroeder-Moorer 8+4 stereo |
|
|
9
|
+
| `@audio/reverb-dattorro` | planned | plate — figure-eight tank (JAES 1997) |
|
|
10
|
+
| `@audio/reverb-convolution` | planned | IR convolution (cabinet sims share the engine — see @audio/amp) |
|
|
11
|
+
| `@audio/reverb-fdn` | planned | feedback delay network |
|
|
12
|
+
| `@audio/reverb-spring` | planned | spring model |
|
|
13
|
+
| `@audio/reverb-shimmer` | planned | pitch-shifted feedback (uses @audio/shift) |
|
package/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// @audio/reverb — reverberation umbrella re-exporting every @audio/reverb-* atom.
|
|
2
|
+
// For smaller bundles, depend directly on the individual atom.
|
|
3
|
+
|
|
4
|
+
export { default as schroeder } from '@audio/reverb-schroeder'
|
|
5
|
+
export { default as freeverb } from '@audio/reverb-freeverb'
|
|
6
|
+
export { default as dattorro } from '@audio/reverb-dattorro'
|
|
7
|
+
export { default as convolve } from '@audio/reverb-convolution'
|
|
8
|
+
export { default as fdn } from '@audio/reverb-fdn'
|
|
9
|
+
export { default as spring } from '@audio/reverb-spring'
|
|
10
|
+
export { default as shimmer } from '@audio/reverb-shimmer'
|
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@audio/reverb",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"sideEffects": false,
|
|
6
|
+
"description": "Reverberation — umbrella for @audio/reverb-* atoms (Schroeder, Freeverb, Dattorro plate, FDN, convolution, spring, shimmer)",
|
|
7
|
+
"main": "index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./index.js",
|
|
10
|
+
"./package.json": "./package.json"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"index.js"
|
|
14
|
+
],
|
|
15
|
+
"workspaces": [
|
|
16
|
+
"packages/*"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"test": "node test.js",
|
|
20
|
+
"test:all": "npm test --workspaces --if-present && npm test",
|
|
21
|
+
"publish:all": "npm publish --workspaces && npm publish"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@audio/reverb-schroeder": "^1.0.0",
|
|
25
|
+
"@audio/reverb-freeverb": "^1.0.0",
|
|
26
|
+
"@audio/reverb-dattorro": "^1.0.0",
|
|
27
|
+
"@audio/reverb-convolution": "^1.0.0",
|
|
28
|
+
"@audio/reverb-fdn": "^1.0.0",
|
|
29
|
+
"@audio/reverb-spring": "^1.0.0",
|
|
30
|
+
"@audio/reverb-shimmer": "^1.0.0"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"audio",
|
|
34
|
+
"dsp",
|
|
35
|
+
"reverb",
|
|
36
|
+
"schroeder",
|
|
37
|
+
"freeverb",
|
|
38
|
+
"dattorro",
|
|
39
|
+
"plate",
|
|
40
|
+
"fdn",
|
|
41
|
+
"convolution"
|
|
42
|
+
],
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"author": "Dmitry Iv. <dfcreative@gmail.com>",
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18"
|
|
47
|
+
},
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public"
|
|
50
|
+
}
|
|
51
|
+
}
|