node-av 1.2.0 → 1.3.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.
- package/README.md +0 -21
- package/dist/api/bitstream-filter.d.ts +3 -0
- package/dist/api/bitstream-filter.js +5 -2
- package/dist/api/bitstream-filter.js.map +1 -1
- package/dist/api/decoder.d.ts +5 -0
- package/dist/api/decoder.js +7 -2
- package/dist/api/decoder.js.map +1 -1
- package/dist/api/encoder.d.ts +11 -6
- package/dist/api/encoder.js +13 -8
- package/dist/api/encoder.js.map +1 -1
- package/dist/api/filter-presets.d.ts +1267 -15
- package/dist/api/filter-presets.js +1387 -17
- package/dist/api/filter-presets.js.map +1 -1
- package/dist/api/filter.d.ts +28 -0
- package/dist/api/filter.js +30 -2
- package/dist/api/filter.js.map +1 -1
- package/dist/api/hardware.d.ts +24 -2
- package/dist/api/hardware.js +65 -8
- package/dist/api/hardware.js.map +1 -1
- package/dist/api/io-stream.d.ts +6 -0
- package/dist/api/io-stream.js +6 -0
- package/dist/api/io-stream.js.map +1 -1
- package/dist/api/media-input.d.ts +1 -0
- package/dist/api/media-input.js.map +1 -1
- package/dist/api/media-output.d.ts +4 -0
- package/dist/api/media-output.js +4 -0
- package/dist/api/media-output.js.map +1 -1
- package/dist/api/pipeline.d.ts +193 -0
- package/dist/api/pipeline.js +17 -0
- package/dist/api/pipeline.js.map +1 -1
- package/dist/api/types.d.ts +5 -0
- package/dist/api/utilities/audio-sample.d.ts +0 -8
- package/dist/api/utilities/audio-sample.js +0 -8
- package/dist/api/utilities/audio-sample.js.map +1 -1
- package/dist/api/utilities/channel-layout.d.ts +0 -8
- package/dist/api/utilities/channel-layout.js +0 -8
- package/dist/api/utilities/channel-layout.js.map +1 -1
- package/dist/api/utilities/image.d.ts +0 -8
- package/dist/api/utilities/image.js +0 -8
- package/dist/api/utilities/image.js.map +1 -1
- package/dist/api/utilities/index.d.ts +3 -3
- package/dist/api/utilities/index.js +3 -3
- package/dist/api/utilities/index.js.map +1 -1
- package/dist/api/utilities/media-type.d.ts +1 -9
- package/dist/api/utilities/media-type.js +1 -9
- package/dist/api/utilities/media-type.js.map +1 -1
- package/dist/api/utilities/pixel-format.d.ts +1 -9
- package/dist/api/utilities/pixel-format.js +1 -9
- package/dist/api/utilities/pixel-format.js.map +1 -1
- package/dist/api/utilities/sample-format.d.ts +1 -9
- package/dist/api/utilities/sample-format.js +1 -9
- package/dist/api/utilities/sample-format.js.map +1 -1
- package/dist/api/utilities/streaming.d.ts +0 -8
- package/dist/api/utilities/streaming.js +0 -8
- package/dist/api/utilities/streaming.js.map +1 -1
- package/dist/api/utilities/timestamp.d.ts +0 -8
- package/dist/api/utilities/timestamp.js +0 -8
- package/dist/api/utilities/timestamp.js.map +1 -1
- package/dist/api/utils.js +2 -0
- package/dist/api/utils.js.map +1 -1
- package/dist/constants/constants.d.ts +1 -1
- package/dist/constants/constants.js +2 -0
- package/dist/constants/constants.js.map +1 -1
- package/dist/lib/binding.d.ts +1 -0
- package/dist/lib/binding.js +2 -0
- package/dist/lib/binding.js.map +1 -1
- package/dist/lib/codec.d.ts +4 -4
- package/dist/lib/codec.js +4 -4
- package/dist/lib/error.d.ts +1 -1
- package/dist/lib/error.js +1 -1
- package/dist/lib/index.d.ts +1 -1
- package/dist/lib/index.js +1 -1
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/native-types.d.ts +1 -0
- package/dist/lib/option.d.ts +176 -0
- package/dist/lib/option.js +176 -0
- package/dist/lib/option.js.map +1 -1
- package/dist/lib/utilities.d.ts +64 -1
- package/dist/lib/utilities.js +65 -0
- package/dist/lib/utilities.js.map +1 -1
- package/install/ffmpeg.js +0 -11
- package/package.json +12 -14
- package/release_notes.md +24 -43
package/release_notes.md
CHANGED
|
@@ -1,48 +1,29 @@
|
|
|
1
|
-
## node-av Release v1.
|
|
1
|
+
## node-av Release v1.3.0
|
|
2
2
|
|
|
3
3
|
### 📦 Updated Packages
|
|
4
4
|
|
|
5
|
-
The following platform packages have been updated to v1.
|
|
6
|
-
- `@seydx/node-av-darwin-arm64@v1.
|
|
7
|
-
- `@seydx/node-av-darwin-x64@v1.
|
|
8
|
-
- `@seydx/node-av-linux-arm64@v1.
|
|
9
|
-
- `@seydx/node-av-linux-x64@v1.
|
|
10
|
-
- `@seydx/node-av-win32-arm64@v1.
|
|
11
|
-
- `@seydx/node-av-win32-x64@v1.
|
|
5
|
+
The following platform packages have been updated to v1.3.0:
|
|
6
|
+
- `@seydx/node-av-darwin-arm64@v1.3.0`
|
|
7
|
+
- `@seydx/node-av-darwin-x64@v1.3.0`
|
|
8
|
+
- `@seydx/node-av-linux-arm64@v1.3.0`
|
|
9
|
+
- `@seydx/node-av-linux-x64@v1.3.0`
|
|
10
|
+
- `@seydx/node-av-win32-arm64@v1.3.0`
|
|
11
|
+
- `@seydx/node-av-win32-x64@v1.3.0`
|
|
12
12
|
|
|
13
|
-
### 📝 Changes since v1.
|
|
13
|
+
### 📝 Changes since v1.2.0
|
|
14
14
|
|
|
15
|
-
- chore: bump version to 1.
|
|
16
|
-
- Fix
|
|
17
|
-
- Update
|
|
18
|
-
- Update
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
- Update
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
- Update
|
|
27
|
-
- Update
|
|
28
|
-
- Update
|
|
29
|
-
- Update
|
|
30
|
-
- Update .gitignore (b8ed1b3)
|
|
31
|
-
- Update docs (5212876)
|
|
32
|
-
- Update workflows (39c7bbe)
|
|
33
|
-
- Update vitepress config (689b49c)
|
|
34
|
-
- Fix docs (d43924a)
|
|
35
|
-
- Update README & CONTIRBUTION & INSTALLATION (2bd94f5)
|
|
36
|
-
- deps (aca0757)
|
|
37
|
-
- Add vitepress docs (1ffebe7)
|
|
38
|
-
- Update tests (3533b92)
|
|
39
|
-
- Update examples (e1e41c6)
|
|
40
|
-
- Refactor docs (dce1cf1)
|
|
41
|
-
- feat: add synchronous codec opening method to CodecContext (2161492)
|
|
42
|
-
- Buffixes, improvements, cleanup (febc998)
|
|
43
|
-
- refactor: HardwareContext (b1cfb4a)
|
|
44
|
-
- refactor: rename deviceName to deviceTypeName in HardwareFilterPresets for clarity (7c5ef9a)
|
|
45
|
-
- feat: add hardware validation and improve context creation in HardwareContext (a4023fe)
|
|
46
|
-
- refactor: update Encoder class to use Codec type and add pixel format support check (adfe8a9)
|
|
47
|
-
- fix: improve custom IO handling in MediaOutput class (dbd18e7)
|
|
48
|
-
- deps (0187080)
|
|
15
|
+
- chore: bump version to 1.3.0 (a2a5d9d)
|
|
16
|
+
- Fix docs (0c940d3)
|
|
17
|
+
- Update constants and reorganize error codes (bf28a5b)
|
|
18
|
+
- Update README (37749dc)
|
|
19
|
+
- Update jsdoc eslint rules and fix docs (66b263a)
|
|
20
|
+
- Update docs (0a1d603)
|
|
21
|
+
- Update eslint config (48e56b9)
|
|
22
|
+
- Update deps (6ae596d)
|
|
23
|
+
- Remove outdated documentation comments and update utility class names for consistency (884482b)
|
|
24
|
+
- Add GetCodecName utility and update bindings (fb18742)
|
|
25
|
+
- Update HardwareContext to support additional AVCodecIDs and enhance getEncoderCodec functionality (35311af)
|
|
26
|
+
- Update vitepress config (d7cb382)
|
|
27
|
+
- Update vitepress config (88fd6bf)
|
|
28
|
+
- Update package.json (9dbd206)
|
|
29
|
+
- Update release scripts & deps (577d21d)
|