@aelionsdk/export 1.0.0-rc.1 → 1.2.0-rc.1
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/README.md +27 -4
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,7 +1,30 @@
|
|
|
1
|
-
#
|
|
1
|
+
# `@aelionsdk/export`
|
|
2
2
|
|
|
3
|
-
Streaming WebCodecs
|
|
3
|
+
Streaming WebCodecs export, muxing, sinks, checkpoints and remote-export
|
|
4
|
+
contracts for AelionSDK.
|
|
4
5
|
|
|
5
|
-
Install
|
|
6
|
+
## Install
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
```bash
|
|
9
|
+
npm install @aelionsdk/export@next
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
`next` currently resolves to `1.2.0-rc.1`. Applications usually start exports
|
|
13
|
+
through an `@aelionsdk/sdk` Session and depend on this package for sinks,
|
|
14
|
+
profiles or remote-export types.
|
|
15
|
+
|
|
16
|
+
## Public surface
|
|
17
|
+
|
|
18
|
+
- WebM and MP4 video export profiles;
|
|
19
|
+
- image, GIF and WAV/RF64 export;
|
|
20
|
+
- memory and OPFS seekable sinks;
|
|
21
|
+
- resumable muxed checkpoints and Worker export;
|
|
22
|
+
- authenticated remote-export provider contracts.
|
|
23
|
+
|
|
24
|
+
Always propagate `AbortSignal`, await sink finalization and dispose partial
|
|
25
|
+
output according to the selected sink contract. Codec support must be
|
|
26
|
+
preflighted for the exact output configuration.
|
|
27
|
+
|
|
28
|
+
See the [export guide](https://foyonaczy.github.io/AelionSDK/export/overview/)
|
|
29
|
+
and [API reference](https://foyonaczy.github.io/AelionSDK/api/aelionsdk/export/overview/).
|
|
30
|
+
Licensed under MIT.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aelionsdk/export",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Streaming WebCodecs
|
|
3
|
+
"version": "1.2.0-rc.1",
|
|
4
|
+
"description": "Streaming WebCodecs export, muxing, sinks and recovery for AelionSDK",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"!dist/.tsbuildinfo"
|
|
28
28
|
],
|
|
29
29
|
"engines": {
|
|
30
|
-
"node": ">=
|
|
30
|
+
"node": ">=24 <25"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public",
|
|
34
34
|
"provenance": true
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@aelionsdk/core": "1.
|
|
38
|
-
"@aelionsdk/media": "1.
|
|
39
|
-
"@aelionsdk/render-ir": "1.
|
|
37
|
+
"@aelionsdk/core": "1.2.0-rc.1",
|
|
38
|
+
"@aelionsdk/media": "1.2.0-rc.1",
|
|
39
|
+
"@aelionsdk/render-ir": "1.2.0-rc.1",
|
|
40
40
|
"mediabunny": "1.50.8"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|