@eluvio/elv-player-js 1.0.131 → 1.0.133

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.
@@ -48,8 +48,6 @@
48
48
 
49
49
  /*! https://mths.be/punycode v1.4.0 by @mathias */
50
50
 
51
- /*! https://mths.be/punycode v1.4.1 by @mathias */
52
-
53
51
  /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
54
52
 
55
53
  /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eluvio/elv-player-js",
3
- "version": "1.0.131",
3
+ "version": "1.0.133",
4
4
  "description": "![Eluvio Logo](src/static/images/Logo.png \"Eluvio Logo\")",
5
5
  "main": "src/index.js",
6
6
  "license": "MIT",
@@ -36,7 +36,7 @@
36
36
  "webpack.config.js"
37
37
  ],
38
38
  "dependencies": {
39
- "@eluvio/elv-client-js": "^4.0.59",
39
+ "@eluvio/elv-client-js": "^4.0.62",
40
40
  "dashjs": "^4.7.0",
41
41
  "focus-visible": "^5.2.0",
42
42
  "hls.js": "^1.4.12",
package/src/index.js CHANGED
@@ -142,15 +142,15 @@ const DefaultParameters = {
142
142
  const PlayerProfiles = {
143
143
  default: {
144
144
  label: "Default",
145
- hlsSettings: {},
145
+ hlsSettings: Utils.HLSJSSettings({profile: "default"}),
146
146
  },
147
147
  low_latency: {
148
148
  label: "Low Latency Live",
149
- hlsSettings: Utils.LiveHLSJSSettings({lowLatency: true})
149
+ hlsSettings: Utils.HLSJSSettings({profile: "ll"})
150
150
  },
151
151
  ultra_low_latency: {
152
152
  label: "Ultra Low Latency Live",
153
- hlsSettings: Utils.LiveHLSJSSettings({ultraLowLatency: true})
153
+ hlsSettings: Utils.HLSJSSettings({profile: "ull"})
154
154
  },
155
155
  custom: {
156
156
  label: "Custom",
@@ -974,12 +974,15 @@ export class EluvioPlayer {
974
974
  this.Log(`Encountered ${error.details}`);
975
975
  this.Log(error);
976
976
 
977
+ /*
977
978
  if(error.details === "bufferFullError") {
978
979
  this.bufferFullRestartTimeout = setTimeout(() => {
979
980
  this.Log("Buffer full error - Restarting player", true);
980
981
  this.HardReload(error, 5000);
981
982
  }, 3000);
982
983
  }
984
+
985
+ */
983
986
 
984
987
  if(error.details === "bufferStalledError") {
985
988
  const stallTime = this.video.currentTime;
@@ -563,7 +563,7 @@ $button-height: 35px;
563
563
  color: $white;
564
564
  display: flex;
565
565
  flex-direction: column;
566
- height: 360px;
566
+ height: 400px;
567
567
  max-height: 100%;
568
568
  max-width: 100%;
569
569
  padding: 30px 30px 20px;