unbikit 0.0.0 → 0.2.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/LICENSE.md +9 -1
- package/README.md +27 -1
- package/dist/unbikit.cjs +1392 -0
- package/dist/unbikit.d.cts +86 -0
- package/dist/unbikit.d.ts +86 -0
- package/dist/unbikit.js +1391 -0
- package/package.json +94 -2
package/LICENSE.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# License
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
unbikit, a decoder for `.bik` format video files, is licensed under
|
|
4
|
+
Apache 2.0 or MIT terms, at your option.
|
|
4
5
|
|
|
5
6
|
SPDX-License-Identifier: MIT OR Apache-2.0
|
|
6
7
|
|
|
@@ -29,3 +30,10 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
29
30
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
30
31
|
|
|
31
32
|
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
33
|
+
|
|
34
|
+
# Bink Video Licensing
|
|
35
|
+
|
|
36
|
+
The redistribution of Bink Video files may require an additional license from
|
|
37
|
+
[Epic Games Tools](https://www.radgametools.com). More information can be found at
|
|
38
|
+
|
|
39
|
+
https://www.radgametools.com/binkfaq.htm
|
package/README.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
1
|
# unbikit
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> ⚠️
|
|
4
|
+
> This package is at a very early development stage. Expect **_major_** API changes!
|
|
5
|
+
|
|
6
|
+
A decoder for `.bik` video files that can be used to play or transcode videos.
|
|
7
|
+
Only version 1 of the format is supported, all revisions except `b`.
|
|
8
|
+
|
|
9
|
+
Written in TypeScript/JavaScript (no WASM or native code).
|
|
10
|
+
|
|
11
|
+
See the [unbikit repository page on GitHub](https://github.com/blennies/unbikit) for more information.
|
|
12
|
+
|
|
13
|
+
## License
|
|
14
|
+
|
|
15
|
+
This software is distributed under Apache License (Version 2.0) or MIT License
|
|
16
|
+
terms, at your option.
|
|
17
|
+
|
|
18
|
+
See [LICENSE](LICENSE.md) for details.
|
|
19
|
+
|
|
20
|
+
**SPDX-License-Identifier: MIT OR Apache-2.0**
|
|
21
|
+
|
|
22
|
+
## Bink Video Licensing
|
|
23
|
+
|
|
24
|
+
The `.bik` file format is a proprietary format used by
|
|
25
|
+
[Bink Video](https://www.radgametools.com/bnkmain.htm), developed by
|
|
26
|
+
[Epic Games Tools](https://www.radgametools.com/) (formerly RAD Game Tools).
|
|
27
|
+
The redistribution of Bink Video files may require an additional license from
|
|
28
|
+
Epic Games Tools. More information can be found in their
|
|
29
|
+
[Bink FAQ](https://www.radgametools.com/binkfaq.htm).
|