@clappr/player 0.4.3 → 0.4.7
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 +16 -0
- package/dist/clappr.js +2427 -1937
- package/dist/clappr.js.map +1 -1
- package/dist/clappr.min.js +14 -14
- package/dist/clappr.min.js.map +1 -1
- package/dist/clappr.plainhtml5.js +692 -655
- package/dist/clappr.plainhtml5.js.map +1 -1
- package/dist/clappr.plainhtml5.min.js +1 -1
- package/dist/clappr.plainhtml5.min.js.map +1 -1
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -34,6 +34,7 @@ Clappr is under development but production-ready. Feel free to open issues and s
|
|
|
34
34
|
* [Built-in Plugins](https://github.com/clappr/clappr#electric_plug-built-in-plugins)
|
|
35
35
|
* [Third party plugins/integrations](https://github.com/clappr/clappr#handshake-third-party-pluginsintegrations)
|
|
36
36
|
* [Supported Formats](https://github.com/clappr/clappr#film_strip-supported-formats)
|
|
37
|
+
* [About Autoplay](https://github.com/clappr/clappr#play_or_pause_button-about-autoplay)
|
|
37
38
|
* [FAQ & Troubleshooting](https://github.com/clappr/clappr#interrobang-faq--troubleshooting)
|
|
38
39
|
* [Companies using Clappr](https://github.com/clappr/clappr#rocket-companies-using-clappr)
|
|
39
40
|
* [Contributors](https://github.com/clappr/clappr#raised_hands-contributors)
|
|
@@ -82,6 +83,8 @@ You can check the plugins used on Clappr player via `@clappr/plugins` [here](htt
|
|
|
82
83
|
|
|
83
84
|
|Plugin |Status|Compatible with latest Clappr|URL|
|
|
84
85
|
|-----------------------|--------|-------------------------------|--------------------------------------------------------|
|
|
86
|
+
|Media Control | Ready | Yes | https://github.com/joaopaulovieira/clappr-media-control-plugin |
|
|
87
|
+
|Video Queue (Playlist) | Ready | Yes | https://github.com/joaopaulovieira/clappr-queue-plugin |
|
|
85
88
|
|Thumbnails on seekbar| Ready | Yes | https://github.com/tjenkinson/clappr-thumbnails-plugin |
|
|
86
89
|
|Markers | Ready | Yes | https://github.com/tjenkinson/clappr-markers-plugin |
|
|
87
90
|
|Level Selector| Ready | Yes | https://github.com/clappr/clappr-level-selector-plugin |
|
|
@@ -133,6 +136,19 @@ PS4 Browser | ✔ | ✔ | ✘ | ? |  | !
|
|
|
133
136
|
|
|
134
137
|
 means that the support is made by an external plugin.
|
|
135
138
|
|
|
139
|
+
:play_or_pause_button: About Autoplay
|
|
140
|
+
---
|
|
141
|
+
**Clappr has no control over `autoplay` Browser Policy.**
|
|
142
|
+
|
|
143
|
+
Therefore, we're not able to execute play and unmute actions sequentially in every situation. There are a series of scenarios where the Browser blocks these actions based on it’s own policy.
|
|
144
|
+
|
|
145
|
+
Each browser has their own different restrictions, and the usual behavior is to activate the sound only after an user interaction with the player.
|
|
146
|
+
|
|
147
|
+
For more infos about auto play video policy, you can read these docs:
|
|
148
|
+
|
|
149
|
+
- [Chrome Autoplay Policy](https://developers.google.com/web/updates/2017/09/autoplay-policy-changes)
|
|
150
|
+
- [WebKit Autoplay Policy](https://webkit.org/blog/7734/auto-play-policy-changes-for-macos/)
|
|
151
|
+
|
|
136
152
|
:interrobang: FAQ & Troubleshooting
|
|
137
153
|
---
|
|
138
154
|
### How to write a plugin?
|