@camstack/addon-decoder-nodeav 1.1.2 → 1.1.4
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/dist/index.js +891 -39
- package/dist/index.mjs +887 -40
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-decoder-nodeav",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Standalone in-process node-av decoder addon for CamStack",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"category": "pipeline",
|
|
36
36
|
"name": "Decoder (node-av)",
|
|
37
37
|
"version": "0.1.0",
|
|
38
|
-
"description": "Primary in-process video decoder using FFmpeg native bindings (node-av). Registers the decoder cap by default
|
|
38
|
+
"description": "Primary in-process video decoder using FFmpeg native bindings (node-av). Registers the decoder cap by default (decoder-ffmpeg is an explicit fallback only) and also provides the node-av audio codec (encode/decode + resample) for the audio-codec cap.",
|
|
39
39
|
"entry": "./dist/index.js",
|
|
40
40
|
"execution": {
|
|
41
41
|
"placement": "any-node",
|
|
@@ -45,6 +45,10 @@
|
|
|
45
45
|
{
|
|
46
46
|
"name": "decoder",
|
|
47
47
|
"optional": true
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "audio-codec",
|
|
51
|
+
"optional": true
|
|
48
52
|
}
|
|
49
53
|
],
|
|
50
54
|
"passive": true,
|