@audio/measure 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.
Files changed (4) hide show
  1. package/LICENSE +40 -0
  2. package/README.md +11 -0
  3. package/index.js +6 -0
  4. package/package.json +48 -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,11 @@
1
+ # @audio/measure
2
+
3
+ > Practical recording measurement — capture what your room/gear actually does. All planned.
4
+
5
+ | Package | What |
6
+ |---|---|
7
+ | `@audio/measure-ir` | ESS sweep → impulse response (Farina 2000) — feeds `reverb-convolution` + `amp-cabinet` |
8
+ | `@audio/measure-response` | frequency response of a device/chain |
9
+ | `@audio/measure-latency` | loopback round-trip latency |
10
+
11
+ Sweep generation = `@audio/synth-chirp`; deconvolution = inverse-sweep convolution (`eq-fir`/FFT machinery exists). The practical-VST/recording surface: measure once, convolve forever.
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // @audio/measure — acoustic & system measurement umbrella.
2
+
3
+ export { default as ir, inverseSweep } from '@audio/measure-ir'
4
+ export { default as latency } from '@audio/measure-latency'
5
+ export { default as align } from '@audio/measure-align'
6
+ export { default as response } from '@audio/measure-response'
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@audio/measure",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "sideEffects": false,
6
+ "description": "Acoustic & system measurement \u2014 umbrella for @audio/measure-* atoms (IR capture, response, latency)",
7
+ "workspaces": [
8
+ "packages/*"
9
+ ],
10
+ "keywords": [
11
+ "audio",
12
+ "dsp",
13
+ "measurement",
14
+ "impulse-response",
15
+ "sweep"
16
+ ],
17
+ "license": "MIT",
18
+ "author": "Dmitry Iv. <dfcreative@gmail.com>",
19
+ "engines": {
20
+ "node": ">=18"
21
+ },
22
+ "main": "index.js",
23
+ "exports": {
24
+ ".": "./index.js",
25
+ "./package.json": "./package.json"
26
+ },
27
+ "files": [
28
+ "index.js"
29
+ ],
30
+ "scripts": {
31
+ "test": "node test.js",
32
+ "test:all": "npm test --workspaces --if-present && npm test",
33
+ "publish:all": "npm publish --workspaces && npm publish"
34
+ },
35
+ "dependencies": {
36
+ "@audio/measure-ir": "^1.0.0",
37
+ "@audio/measure-latency": "^1.0.0",
38
+ "@audio/measure-align": "^1.0.0",
39
+ "@audio/measure-response": "^1.0.0"
40
+ },
41
+ "devDependencies": {
42
+ "tst": "^9.4.0",
43
+ "@audio/synth-chirp": "^1.0.0"
44
+ },
45
+ "publishConfig": {
46
+ "access": "public"
47
+ }
48
+ }