mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
beae29d407
commit
b0d117ad5b
16 changed files with 800 additions and 382 deletions
9
dashboard-ui/bower_components/hls.js/API.md
vendored
9
dashboard-ui/bower_components/hls.js/API.md
vendored
|
@ -183,6 +183,7 @@ configuration parameters could be provided to hls.js upon instantiation of Hls O
|
|||
|
||||
var config = {
|
||||
autoStartLoad : true,
|
||||
capLevelToPlayerSize: false,
|
||||
debug : false,
|
||||
defaultAudioCodec : undefined,
|
||||
maxBufferLength : 30,
|
||||
|
@ -223,6 +224,12 @@ var hls = new Hls(config);
|
|||
this getter/setter allows to retrieve and override Hls default configuration.
|
||||
this configuration will be applied by default to all instances.
|
||||
|
||||
#### ```capLevelToPlayerSize```
|
||||
(default false)
|
||||
|
||||
- if set to true, the adaptive algorithm with limit levels usable in auto-quality by the HTML video element dimensions (width and height)
|
||||
- if set to false, levels will not be limited. All available levels could be used in auto-quality mode taking only bandwidth into consideration.
|
||||
|
||||
#### ```debug```
|
||||
(default false)
|
||||
|
||||
|
@ -397,7 +404,7 @@ var customLoader = function() {
|
|||
maxRetry : max nb of load retry
|
||||
retryDelay : delay between an I/O error and following connection retry (ms). this to avoid spamming the server.
|
||||
*/
|
||||
this.load = function(url,responseType,onSuccess,onError,timeout,maxRetry,retryDelay) {}
|
||||
this.load = function(url,responseType,onSuccess,onError,onTimeOut,timeout,maxRetry,retryDelay) {}
|
||||
|
||||
/* abort any loading in progress */
|
||||
this.abort = function() {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue