@eluvio/elv-player-js 1.0.130 → 1.0.132
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 +5 -15
- package/src/static/stylesheets/player.scss +1 -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.132",
|
|
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.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,25 +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
|
-
label: "Low Latency",
|
|
149
|
-
hlsSettings: Utils.
|
|
148
|
+
label: "Low Latency Live",
|
|
149
|
+
hlsSettings: Utils.HLSJSSettings({profile: "ll"})
|
|
150
150
|
},
|
|
151
151
|
ultra_low_latency: {
|
|
152
|
-
label: "Ultra Low Latency",
|
|
153
|
-
hlsSettings: {
|
|
154
|
-
"capLevelToPlayerSize": false,
|
|
155
|
-
"enableWorker": true,
|
|
156
|
-
"lowLatencyMode": true,
|
|
157
|
-
"maxBufferLength": 4,
|
|
158
|
-
"backBufferLength": 4,
|
|
159
|
-
"liveSyncDuration": 4,
|
|
160
|
-
"liveMaxLatencyDuration": 5,
|
|
161
|
-
"liveDurationInfinity": false,
|
|
162
|
-
"highBufferWatchdogPeriod": 1
|
|
163
|
-
}
|
|
152
|
+
label: "Ultra Low Latency Live",
|
|
153
|
+
hlsSettings: Utils.HLSJSSettings({profile: "ull"})
|
|
164
154
|
},
|
|
165
155
|
custom: {
|
|
166
156
|
label: "Custom",
|