unbikit 0.3.0 → 0.4.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 +5 -3
- package/README.md +12 -7
- package/dist/unbikit.cjs +148 -139
- package/dist/unbikit.d.cts +130 -5
- package/dist/unbikit.d.ts +130 -5
- package/dist/unbikit.js +148 -139
- package/package.json +26 -28
package/LICENSE.md
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
# License
|
|
2
2
|
|
|
3
|
+
## unbikit
|
|
4
|
+
|
|
3
5
|
unbikit, a decoder for `.bik` format video files, is licensed under
|
|
4
6
|
Apache 2.0 or MIT terms, at your option.
|
|
5
7
|
|
|
6
8
|
SPDX-License-Identifier: MIT OR Apache-2.0
|
|
7
9
|
|
|
8
|
-
|
|
10
|
+
### Apache 2.0 License
|
|
9
11
|
|
|
10
12
|
Copyright 2025 David Hart, blennies.dev@gmail.com
|
|
11
13
|
|
|
@@ -21,7 +23,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
21
23
|
See the License for the specific language governing permissions and
|
|
22
24
|
limitations under the License.
|
|
23
25
|
|
|
24
|
-
|
|
26
|
+
### MIT License
|
|
25
27
|
|
|
26
28
|
Copyright 2025 David Hart, blennies.dev@gmail.com
|
|
27
29
|
|
|
@@ -31,7 +33,7 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
31
33
|
|
|
32
34
|
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
35
|
|
|
34
|
-
|
|
36
|
+
## Bink Video Licensing
|
|
35
37
|
|
|
36
38
|
The redistribution of Bink Video files may require an additional license from
|
|
37
39
|
[Epic Games Tools](https://www.radgametools.com). More information can be found at
|
package/README.md
CHANGED
|
@@ -5,13 +5,18 @@
|
|
|
5
5
|
> ⚠️
|
|
6
6
|
> This package is at a very early development stage. Expect **_major_** API changes!
|
|
7
7
|
|
|
8
|
-
unbikit (_un-bik-ɪt_) is a decoder for `.bik` video files that can be used to play or
|
|
9
|
-
videos.
|
|
10
|
-
Only version 1 of the format is supported, all revisions except `b`.
|
|
11
|
-
|
|
12
|
-
Written in TypeScript/JavaScript (no WASM or native code).
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
unbikit (_un-bik-ɪt_) is a decoder for `.bik` video files that can be used to play or
|
|
9
|
+
transcode videos using the Web Streams API.
|
|
10
|
+
Only version 1 of the BIK format is supported, all revisions except `b`.
|
|
11
|
+
|
|
12
|
+
Written in TypeScript/JavaScript (no WASM or native code). The decoder is designed to be
|
|
13
|
+
isomorphic and should work on all client/server runtimes that support at least ES2022 (or
|
|
14
|
+
older runtimes with syntax lowering).
|
|
15
|
+
|
|
16
|
+
⭐ [Documentation](https://blennies.github.io/unbikit/) and a
|
|
17
|
+
⭐ [video player demo](https://blennies.github.io/unbikit/demo/)
|
|
18
|
+
are available, as well as a
|
|
19
|
+
[repository page on GitHub](https://github.com/blennies/unbikit)!
|
|
15
20
|
|
|
16
21
|
## License
|
|
17
22
|
|