@camstack/addon-decoder-ffmpeg 1.1.4 → 1.1.5
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 +1254 -41
- package/dist/index.mjs +1254 -41
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-decoder-ffmpeg",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Standalone ffmpeg-subprocess decoder fallback addon for CamStack",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"category": "pipeline",
|
|
36
36
|
"name": "Decoder (ffmpeg)",
|
|
37
37
|
"version": "0.1.0",
|
|
38
|
-
"description": "
|
|
38
|
+
"description": "ffmpeg-subprocess media codec addon. Provides bidirectional audio transcode (audio-codec cap — AAC, Opus, PCMU/PCMA, G.722, always registered) plus an explicit fallback video decoder (decoder cap, registered only when this node's decoder backend setting selects ffmpeg; node-av is the default). Codec crashes are isolated to the child; ffmpeg is provisioned per node via ctx.deps.ensureFfmpeg().",
|
|
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,
|