mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add error handling when loading cert
This commit is contained in:
parent
9f00ca2c0c
commit
6145921372
8 changed files with 33 additions and 23 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hls.js",
|
||||
"version": "0.5.51",
|
||||
"version": "0.5.52",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||
"homepage": "https://github.com/dailymotion/hls.js",
|
||||
|
@ -16,11 +16,11 @@
|
|||
"test",
|
||||
"tests"
|
||||
],
|
||||
"_release": "0.5.51",
|
||||
"_release": "0.5.52",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v0.5.51",
|
||||
"commit": "af58679e28308b28a51402a241474c8c60134529"
|
||||
"tag": "v0.5.52",
|
||||
"commit": "2afcbb2bfb0d4a285537adaa60e413df0773e4b2"
|
||||
},
|
||||
"_source": "git://github.com/dailymotion/hls.js.git",
|
||||
"_target": "~0.5.7",
|
||||
|
|
14
dashboard-ui/bower_components/hlsjs/API.md
vendored
14
dashboard-ui/bower_components/hlsjs/API.md
vendored
|
@ -174,6 +174,7 @@ configuration parameters could be provided to hls.js upon instantiation of Hls O
|
|||
capLevelToPlayerSize: false,
|
||||
debug : false,
|
||||
defaultAudioCodec : undefined,
|
||||
initialLiveManifestSize: 1,
|
||||
maxBufferLength : 30,
|
||||
maxMaxBufferLength : 600,
|
||||
maxBufferSize : 60*1000*1000,
|
||||
|
@ -254,6 +255,11 @@ a logger object could also be provided for custom logging : ```config.debug=cust
|
|||
- ```mp4a.40.5``` (HE-AAC) or
|
||||
- ```undefined``` (guess based on sampling rate)
|
||||
|
||||
#### ```initialLiveManifestSize```
|
||||
(default 1)
|
||||
|
||||
number of segments needed to start a playback of Live stream.
|
||||
|
||||
#### ```maxBufferLength```
|
||||
(default 30s)
|
||||
|
||||
|
@ -280,11 +286,15 @@ hls.js will jump over this buffer hole to reach the beginning of this following
|
|||
```maxSeekHole``` allows to configure this jumpable threshold.
|
||||
|
||||
#### ```maxStarvationDelay```
|
||||
(default 2s)
|
||||
(default 4s)
|
||||
|
||||
ABR algorithm will always try to choose a quality level that should avoid rebuffering.
|
||||
In case no quality level with this criteria can be found (lets say for example that buffer length is 1s, but fetching a fragment at lowest quality is predicted to take around 2s ... ie we can forecast around 1s of rebuffering ...) then ABR algorithm will try to find a level that should guarantee less than ```maxStarvationDelay``` of buffering.
|
||||
this max delay is also used in automatic start level selection : in that mode ABR controller will ensure that video loading time (ie the time to fetch the first fragment at lowest quality level + the time to fetch the fragment at the appropriate quality level is less than ```maxStarvationDelay``` )
|
||||
|
||||
#### ```maxLoadingDelay```
|
||||
(default 4s)
|
||||
|
||||
max video loading delay used in automatic start level selection : in that mode ABR controller will ensure that video loading time (ie the time to fetch the first fragment at lowest quality level + the time to fetch the fragment at the appropriate quality level is less than ```maxLoadingDelay``` )
|
||||
|
||||
#### ```seekHoleNudgeDuration```
|
||||
(default 0.01s)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hls.js",
|
||||
"version": "0.5.51",
|
||||
"version": "0.5.52",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||
"homepage": "https://github.com/dailymotion/hls.js",
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hls.js",
|
||||
"version": "0.5.51",
|
||||
"version": "0.5.52",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||
"homepage": "https://github.com/dailymotion/hls.js",
|
||||
|
@ -35,7 +35,7 @@
|
|||
"babel": "babel src --out-dir lib"
|
||||
},
|
||||
"dependencies": {
|
||||
"webworkify": "^1.0.2"
|
||||
"webworkify": "^1.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-preset-es2015": "^6.3.13",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue