@latest-thinking/lt-player 3.0.0-beta.3 → 3.0.0-beta.4
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 +4 -2
- package/THIRD-PARTY-NOTICES.md +36 -0
- package/dist/hls.js +22749 -0
- package/dist/player.js +4707 -4547
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -90,8 +90,10 @@ use the module inside a full viewport or another explicitly sized container.
|
|
|
90
90
|
| `@latest-thinking/lt-player/styles.css` | Bundled player stylesheet |
|
|
91
91
|
| `@latest-thinking/lt-player/package.json` | Published package metadata |
|
|
92
92
|
|
|
93
|
-
|
|
94
|
-
|
|
93
|
+
HLS playback uses the package's `dist/hls.js` chunk. The player imports it dynamically only when an
|
|
94
|
+
HLS source requires the hls.js adapter, and it is never fetched from a CDN. Consumer bundlers that
|
|
95
|
+
support code splitting keep the adapter lazy; bundlers without code splitting include it in their
|
|
96
|
+
own application bundle.
|
|
95
97
|
|
|
96
98
|
## License
|
|
97
99
|
|
package/THIRD-PARTY-NOTICES.md
CHANGED
|
@@ -15,6 +15,7 @@ Their license terms apply independently of the proprietary LT Player license.
|
|
|
15
15
|
| `@videojs/store` | `10.0.0-beta.32` | `Apache-2.0` |
|
|
16
16
|
| `@videojs/utils` | `10.0.0-beta.32` | `Apache-2.0` |
|
|
17
17
|
| `Nunito Sans` | `v19` | `OFL-1.1` |
|
|
18
|
+
| `hls.js` | `1.7.1` | `Apache-2.0` |
|
|
18
19
|
| `react-dom` | `19.2.8` | `MIT` |
|
|
19
20
|
| `react` | `19.2.8` | `MIT` |
|
|
20
21
|
| `scheduler` | `0.27.0` | `MIT` |
|
|
@@ -254,6 +255,41 @@ OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS
|
|
|
254
255
|
IN THE FONT SOFTWARE.
|
|
255
256
|
```
|
|
256
257
|
|
|
258
|
+
### hls.js 1.7.1
|
|
259
|
+
|
|
260
|
+
SPDX-License-Identifier: Apache-2.0
|
|
261
|
+
|
|
262
|
+
```text
|
|
263
|
+
Copyright (c) 2017 Dailymotion (http://www.dailymotion.com)
|
|
264
|
+
|
|
265
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
266
|
+
you may not use this file except in compliance with the License.
|
|
267
|
+
You may obtain a copy of the License at
|
|
268
|
+
|
|
269
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
270
|
+
|
|
271
|
+
Unless required by applicable law or agreed to in writing, software
|
|
272
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
273
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
274
|
+
See the License for the specific language governing permissions and
|
|
275
|
+
limitations under the License.
|
|
276
|
+
|
|
277
|
+
src/remux/mp4-generator.js and src/demux/exp-golomb.ts implementation in this project
|
|
278
|
+
are derived from the HLS library for video.js (https://github.com/videojs/videojs-contrib-hls)
|
|
279
|
+
|
|
280
|
+
That work is also covered by the Apache 2 License, following copyright:
|
|
281
|
+
Copyright (c) 2013-2015 Brightcove
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
285
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
286
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
287
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
288
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
289
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
290
|
+
THE SOFTWARE.
|
|
291
|
+
```
|
|
292
|
+
|
|
257
293
|
### react-dom 19.2.8
|
|
258
294
|
|
|
259
295
|
SPDX-License-Identifier: MIT
|