ovenplayer 0.10.46 → 0.10.48
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 +1 -1
- package/README.md +22 -22
- package/dist/ovenplayer.js +1 -1
- package/dist/ovenplayer.js.map +1 -1
- package/package.json +4 -4
- package/src/js/api/Configurator.js +272 -270
- package/src/js/api/caption/Loader.js +67 -67
- package/src/js/api/caption/Manager.js +143 -141
- package/src/js/api/constants.js +622 -621
- package/src/js/api/provider/html5/Provider.js +570 -563
- package/src/js/api/provider/html5/providers/WebRTCLoader.js +1 -1
- package/src/js/view/components/controls/settingPanel/captionPanel.js +42 -42
- package/src/js/view/components/controls/settingPanel/main.js +321 -321
- package/src/js/view/components/helpers/contextPanel.js +44 -38
- package/src/js/view/components/helpers/contextPanelTemplate.js +19 -9
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
## What is OvenPlayer?
|
|
4
4
|
<img src="demo/assets/images/OP_LLHLS_220610.svg" style="max-width: 100%; height: auto;">
|
|
5
5
|
|
|
6
|
-
OvenPlayer is a JavaScript-based Player that can play Low Latency HLS (LLHLS) and WebRTC streams optimized for [OvenMediaEngine](https://github.com/
|
|
6
|
+
OvenPlayer is a JavaScript-based Player that can play Low Latency HLS (LLHLS) and WebRTC streams optimized for [OvenMediaEngine](https://github.com/OvenMediaLabs/OvenMediaEngine). It provides various APIs, so you can build and operate your media service more easily.
|
|
7
7
|
|
|
8
8
|
## Demo
|
|
9
9
|
<img src="demo/assets/images/05_OvenSpace_230214.png" style="max-width: 100%; height: auto;">
|
|
10
10
|
|
|
11
|
-
OvenSpace is a sub-second latency streaming demo service using [OvenMediaEngine](https://github.com/
|
|
11
|
+
OvenSpace is a sub-second latency streaming demo service using [OvenMediaEngine](https://github.com/OvenMediaLabs/OvenMediaEngine), [OvenPlayer](https://github.com/OvenMediaLabs/OvenPlayer) and [OvenLiveKit](https://github.com/OvenMediaLabs/OvenLiveKit-Web). You can experience OvenPlayer in the **[OvenSpace Demo](https://space.ovenplayer.com/)** and see examples of applying in [OvenSpace Repository](https://github.com/OvenMediaLabs/OvenSpace).
|
|
12
12
|
|
|
13
13
|
## Features
|
|
14
14
|
* HTML5 Standard Video Player
|
|
@@ -24,43 +24,43 @@ OvenSpace is a sub-second latency streaming demo service using [OvenMediaEngine]
|
|
|
24
24
|
* SMI, VTT, SRT
|
|
25
25
|
|
|
26
26
|
## Quick Start
|
|
27
|
-
Please read the [Quick Start](https://
|
|
27
|
+
Please read the [Quick Start](https://docs.ovenplayer.com/#quick-start).
|
|
28
28
|
|
|
29
29
|
### OvenPlayer Demo
|
|
30
30
|
* Without TLS: http://demo.ovenplayer.com
|
|
31
31
|
* With TLS: https://demo.ovenplayer.com
|
|
32
32
|
|
|
33
33
|
## API and Configuration
|
|
34
|
-
Start the [Demo](https://demo.ovenplayer.com) and see [API and Configuration](https://
|
|
34
|
+
Start the [Demo](https://demo.ovenplayer.com) and see [API and Configuration](https://docs.ovenplayer.com/initialization) for more details.
|
|
35
35
|
|
|
36
36
|
## Build the source code
|
|
37
|
-
Check out [Build](https://
|
|
37
|
+
Check out [Build](https://docs.ovenplayer.com/builds) section how to create `ovenplayer.js` for deployment or development after modifying the source code.
|
|
38
38
|
|
|
39
39
|
## How to contribute
|
|
40
40
|
We appreciate your interest in OvenPlayer.
|
|
41
41
|
|
|
42
42
|
We need your help to keep and develop our open-source project, and we want to tell you that you can contribute in many ways. Please read our [Guidelines](CONTRIBUTING.md), [Rules](CODE_OF_CONDUCT.md), and [Contribute](https://www.ovenmediaengine.com/contribute).
|
|
43
43
|
|
|
44
|
-
- [Finding Bugs](https://github.com/
|
|
45
|
-
- [Reviewing Code](https://github.com/
|
|
46
|
-
- [Sharing Ideas](https://github.com/
|
|
47
|
-
- [Testing](https://github.com/
|
|
48
|
-
- [Improving Documentation](https://github.com/
|
|
49
|
-
- [Spreading & Use Cases](https://github.com/
|
|
50
|
-
- [Recurring Donations](https://github.com/
|
|
44
|
+
- [Finding Bugs](https://github.com/OvenMediaLabs/OvenPlayer/blob/master/CONTRIBUTING.md#finding-bugs)
|
|
45
|
+
- [Reviewing Code](https://github.com/OvenMediaLabs/OvenPlayer/blob/master/CONTRIBUTING.md#reviewing-code)
|
|
46
|
+
- [Sharing Ideas](https://github.com/OvenMediaLabs/OvenPlayer/blob/master/CONTRIBUTING.md#sharing-ideas)
|
|
47
|
+
- [Testing](https://github.com/OvenMediaLabs/OvenPlayer/blob/master/CONTRIBUTING.md#testing)
|
|
48
|
+
- [Improving Documentation](https://github.com/OvenMediaLabs/OvenPlayer/blob/master/CONTRIBUTING.md#improving-documentation)
|
|
49
|
+
- [Spreading & Use Cases](https://github.com/OvenMediaLabs/OvenPlayer/blob/master/CONTRIBUTING.md#spreading--use-cases)
|
|
50
|
+
- [Recurring Donations](https://github.com/OvenMediaLabs/OvenPlayer/blob/master/CONTRIBUTING.md#recurring-donations)
|
|
51
51
|
|
|
52
52
|
We always hope that OvenPlayer will make your project a success.
|
|
53
53
|
|
|
54
54
|
## For more information
|
|
55
|
-
* [
|
|
55
|
+
* [OvenMedia Labs Website](http://ovenmedialabs.com/)
|
|
56
56
|
* About OvenMediaEngine, OvenMediaEngine Enterprise, OvenVideo, AirenBlog and more
|
|
57
|
-
* [OvenPlayer Getting Started](https://
|
|
57
|
+
* [OvenPlayer Getting Started](https://docs.ovenplayer.com/)
|
|
58
58
|
* User guide for OvenPlayer UI Customize, API Reference, Examples, and more
|
|
59
|
-
* [OvenMediaEngine GitHub](https://github.com/
|
|
59
|
+
* [OvenMediaEngine GitHub](https://github.com/OvenMediaLabs/OvenMediaEngine)
|
|
60
60
|
* Sub-Second Latency Streaming Server with LLHLS and WebRTC
|
|
61
|
-
* [OvenMediaEngine Getting Started](https://
|
|
61
|
+
* [OvenMediaEngine Getting Started](https://docs.ovenmediaengine.com/)
|
|
62
62
|
* User guide for OvenMediaEngine Configuration, ABR, Clustering, and more
|
|
63
|
-
* [OvenLiveKit](https://github.com/
|
|
63
|
+
* [OvenLiveKit](https://github.com/OvenMediaLabs/OvenLiveKit-Web)
|
|
64
64
|
* JavaScript-based Live Streaming Encoder for OvenMediaEngine
|
|
65
65
|
* [OvenSpace Demo](https://space.ovenplayer.com/)
|
|
66
66
|
* Sub-Second Latency Streaming Demo Service
|
|
@@ -68,11 +68,11 @@ We always hope that OvenPlayer will make your project a success.
|
|
|
68
68
|
## License
|
|
69
69
|
OvenPlayer is licensed under the [MIT license](LICENSE).
|
|
70
70
|
|
|
71
|
-
## About
|
|
72
|
-
|
|
71
|
+
## About OvenMedia Labs Inc.
|
|
72
|
+
OvenMedia Labs aims to make it easier for you to build a stable broadcasting/streaming service with Sub-Second Latency.
|
|
73
73
|
Therefore, we will continue developing and providing the most optimized tools for smooth Sub-Second Latency Streaming.
|
|
74
74
|
|
|
75
75
|
Would you please click on each link below for details:
|
|
76
|
-
* ["JavaScript-based Live Streaming Encoder" **OvenLiveKit**](https://github.com/
|
|
77
|
-
* ["Sub-Second Latency Streaming Server with LLHLS and WebRTC" **OvenMediaEngine**](https://github.com/
|
|
78
|
-
* ["JavaScript-based Player with LLHLS and WebRTC" **OvenPlayer**](https://github.com/
|
|
76
|
+
* ["JavaScript-based Live Streaming Encoder" **OvenLiveKit**](https://github.com/OvenMediaLabs/OvenLiveKit-Web)
|
|
77
|
+
* ["Sub-Second Latency Streaming Server with LLHLS and WebRTC" **OvenMediaEngine**](https://github.com/OvenMediaLabs/OvenMediaEngine)
|
|
78
|
+
* ["JavaScript-based Player with LLHLS and WebRTC" **OvenPlayer**](https://github.com/OvenMediaLabs/OvenPlayer)
|