jassub 1.1.11 → 1.1.13
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 +2 -1
- package/README.md +3 -3
- package/dist/COPYRIGHT +951 -950
- package/dist/jassub-worker-legacy.js +20 -20
- package/dist/jassub-worker-legacy.js.mem +0 -0
- package/dist/jassub-worker.js +1 -1
- package/dist/jassub-worker.wasm +0 -0
- package/dist/jassub.es.js +32 -39
- package/dist/jassub.js +1607 -1605
- package/dist/jassub.umd.js +1 -1
- package/package.json +2 -2
- package/src/jassub.js +23 -17
package/LICENSE
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2021-2022 JASSUB contributors
|
|
4
|
+
Copyright (c) 2017-2021 JavascriptSubtitlesOctopus contributors
|
|
4
5
|
|
|
5
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
7
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -12,13 +12,13 @@ JASSUB is a JS wrapper for <a href="https://github.com/libass/libass">libass</a>
|
|
|
12
12
|
|
|
13
13
|
## Features
|
|
14
14
|
- Supports most SSA/ASS features (everything libass supports)
|
|
15
|
-
-
|
|
16
|
-
-
|
|
15
|
+
- Supports all OpenType, TrueType and WOFF fonts, as well as embedded fonts
|
|
16
|
+
- Capable of using local fonts [(on browsers which support it)](https://caniuse.com/mdn-api_window_querylocalfonts)
|
|
17
17
|
- Works fast (all the heavy lifting is done by WebAssembly)
|
|
18
18
|
- Is fully threaded (on browsers which support it, it's capable of working fully on a separate thread)
|
|
19
19
|
- Is asynchronous (renders when available, not in order of execution)
|
|
20
20
|
- Benefits from hardware acceleration (uses hardware accelerated canvas API's)
|
|
21
|
-
- Doesn't manipulate the DOM
|
|
21
|
+
- Doesn't manipulate the DOM to render subtitles
|
|
22
22
|
- Easy to use - just connect it to video element
|
|
23
23
|
|
|
24
24
|
## Isn't this just the same thing as JavascriptSubtitlesOctopus?
|