@eluvio/elv-player-js 1.0.129 → 1.0.131
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/package.json +2 -2
- package/src/index.js +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eluvio/elv-player-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.131",
|
|
4
4
|
"description": "",
|
|
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.
|
|
39
|
+
"@eluvio/elv-client-js": "^4.0.59",
|
|
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
|
@@ -22,6 +22,7 @@ export const EluvioPlayerParameters = {
|
|
|
22
22
|
playerProfile: {
|
|
23
23
|
DEFAULT: "default",
|
|
24
24
|
LOW_LATENCY: "low_latency",
|
|
25
|
+
ULTRA_LOW_LATENCY: "ultra_low_latency",
|
|
25
26
|
CUSTOM: "custom"
|
|
26
27
|
},
|
|
27
28
|
drms: {
|
|
@@ -144,9 +145,13 @@ const PlayerProfiles = {
|
|
|
144
145
|
hlsSettings: {},
|
|
145
146
|
},
|
|
146
147
|
low_latency: {
|
|
147
|
-
label: "Low Latency",
|
|
148
|
+
label: "Low Latency Live",
|
|
148
149
|
hlsSettings: Utils.LiveHLSJSSettings({lowLatency: true})
|
|
149
150
|
},
|
|
151
|
+
ultra_low_latency: {
|
|
152
|
+
label: "Ultra Low Latency Live",
|
|
153
|
+
hlsSettings: Utils.LiveHLSJSSettings({ultraLowLatency: true})
|
|
154
|
+
},
|
|
150
155
|
custom: {
|
|
151
156
|
label: "Custom",
|
|
152
157
|
hlsSettings: {}
|