@scrypted/nvr 0.4.4 → 0.4.7
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 +21 -0
- package/dist/plugin.zip +0 -0
- package/package.json +4 -4
- package/test.jpg +0 -0
- package/test.uv +1 -0
- package/test.yuv +456 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,27 @@
|
|
|
1
1
|
<details>
|
|
2
2
|
<summary>Changelog</summary>
|
|
3
3
|
|
|
4
|
+
### 0.4.6
|
|
5
|
+
|
|
6
|
+
potential fix for runaway python processes
|
|
7
|
+
cleanup wasm
|
|
8
|
+
use 4:2:0 sampling
|
|
9
|
+
vectorize yuv/jpeg load
|
|
10
|
+
switch to f32
|
|
11
|
+
working wasm jpeg encoder
|
|
12
|
+
wip asm jpeg
|
|
13
|
+
working hardware accelerated decode via ffmpeg
|
|
14
|
+
more hackery to fix byob reads
|
|
15
|
+
remove allocs/copies in dec/conv, 8x improvement
|
|
16
|
+
decoder perf on par with libav
|
|
17
|
+
working, but cpu too high.
|
|
18
|
+
wip: ffmpeg/wasm decoder engine
|
|
19
|
+
further improve assembly simd image ops
|
|
20
|
+
hot path improvemnet
|
|
21
|
+
fixup simd sampler
|
|
22
|
+
initial pass at new in process webassembly/simd decoder
|
|
23
|
+
|
|
24
|
+
|
|
4
25
|
### 0.4.3
|
|
5
26
|
|
|
6
27
|
privacy mode toggle
|
package/dist/plugin.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scrypted/nvr",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.7",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"scrypted-setup-project": "scrypted-setup-project",
|
|
6
6
|
"prescrypted-setup-project": "scrypted-package-json",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"scrypted-readme": "scrypted-readme",
|
|
18
18
|
"asbuild:debug": "asc assembly/index.ts --target debug --enable simd --exportRuntime",
|
|
19
19
|
"asbuild:release": "asc assembly/index.ts --target release --enable simd --exportRuntime",
|
|
20
|
-
"asbuild:tsc": "npm run asbuild:release && npx tsc --allowJs --outdir ts --target es2020 -m commonjs
|
|
20
|
+
"asbuild:tsc": "npm run asbuild:release && npx tsc --allowJs --outdir ts --target es2020 -m commonjs build/release.js && cp build/*.d.ts ts/",
|
|
21
21
|
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
|
|
22
22
|
"test": "node tests",
|
|
23
23
|
"start": "npx serve ."
|
|
@@ -69,9 +69,9 @@
|
|
|
69
69
|
"uuid": "^9.0.1"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@types/node": "^20.8.
|
|
72
|
+
"@types/node": "^20.8.9",
|
|
73
73
|
"@types/uuid": "^9.0.6",
|
|
74
|
-
"assemblyscript": "^0.27.
|
|
74
|
+
"assemblyscript": "^0.27.14",
|
|
75
75
|
"ts-node": "^10.9.1"
|
|
76
76
|
}
|
|
77
77
|
}
|
package/test.jpg
ADDED
|
Binary file
|