update components
This commit is contained in:
parent
33736c5616
commit
7ebc536076
5 changed files with 31 additions and 20 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hls.js",
|
"name": "hls.js",
|
||||||
"version": "0.5.41",
|
"version": "0.5.42",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||||
"homepage": "https://github.com/dailymotion/hls.js",
|
"homepage": "https://github.com/dailymotion/hls.js",
|
||||||
|
@ -16,11 +16,11 @@
|
||||||
"test",
|
"test",
|
||||||
"tests"
|
"tests"
|
||||||
],
|
],
|
||||||
"_release": "0.5.41",
|
"_release": "0.5.42",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v0.5.41",
|
"tag": "v0.5.42",
|
||||||
"commit": "e8d85916067a06ab823d66bf291ace771b886478"
|
"commit": "6d947aa6a7c7dab11aeb72a976a48d8d53bfc38b"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/dailymotion/hls.js.git",
|
"_source": "git://github.com/dailymotion/hls.js.git",
|
||||||
"_target": "~0.5.7",
|
"_target": "~0.5.7",
|
||||||
|
|
29
dashboard-ui/bower_components/hls.js/API.md
vendored
29
dashboard-ui/bower_components/hls.js/API.md
vendored
|
@ -202,7 +202,14 @@ configuration parameters could be provided to hls.js upon instantiation of Hls O
|
||||||
xhrSetup : XMLHttpRequestSetupCallback,
|
xhrSetup : XMLHttpRequestSetupCallback,
|
||||||
abrController : customAbrController,
|
abrController : customAbrController,
|
||||||
timelineController: TimelineController,
|
timelineController: TimelineController,
|
||||||
enableCEA708Captions: true
|
enableCEA708Captions: true,
|
||||||
|
abrEwmaFastLive: 5.0,
|
||||||
|
abrEwmaSlowLive: 9.0,
|
||||||
|
abrEwmaFastVoD: 4.0,
|
||||||
|
abrEwmaSlowVoD: 15.0,
|
||||||
|
abrEwmaDefaultEstimate: 500000,
|
||||||
|
abrBandWidthFactor: 0.8,
|
||||||
|
abrBandWidthUpFactor: 0.7
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -485,7 +492,7 @@ parameter should be a boolean
|
||||||
#### ```abrEwmaFastLive```
|
#### ```abrEwmaFastLive```
|
||||||
(default : 5.0)
|
(default : 5.0)
|
||||||
|
|
||||||
Fast bitrate Exponential moving average half-life, used to compute average bitrate for Live streams
|
Fast bitrate Exponential moving average half-life, used to compute average bitrate for Live streams.
|
||||||
Half of the estimate is based on the last abrEwmaFastLive seconds of sample history.
|
Half of the estimate is based on the last abrEwmaFastLive seconds of sample history.
|
||||||
Each of the sample is weighted by the fragment loading duration.
|
Each of the sample is weighted by the fragment loading duration.
|
||||||
|
|
||||||
|
@ -494,7 +501,7 @@ parameter should be a float greater than 0
|
||||||
#### ```abrEwmaSlowLive```
|
#### ```abrEwmaSlowLive```
|
||||||
(default : 9.0)
|
(default : 9.0)
|
||||||
|
|
||||||
Slow bitrate Exponential moving average half-life, used to compute average bitrate for Live streams
|
Slow bitrate Exponential moving average half-life, used to compute average bitrate for Live streams.
|
||||||
Half of the estimate is based on the last abrEwmaSlowLive seconds of sample history.
|
Half of the estimate is based on the last abrEwmaSlowLive seconds of sample history.
|
||||||
Each of the sample is weighted by the fragment loading duration.
|
Each of the sample is weighted by the fragment loading duration.
|
||||||
|
|
||||||
|
@ -503,7 +510,7 @@ parameter should be a float greater than abrEwmaFastLive
|
||||||
#### ```abrEwmaFastVoD```
|
#### ```abrEwmaFastVoD```
|
||||||
(default : 4.0)
|
(default : 4.0)
|
||||||
|
|
||||||
Fast bitrate Exponential moving average half-life, used to compute average bitrate for VoD streams
|
Fast bitrate Exponential moving average half-life, used to compute average bitrate for VoD streams.
|
||||||
Half of the estimate is based on the last abrEwmaFastVoD seconds of sample history.
|
Half of the estimate is based on the last abrEwmaFastVoD seconds of sample history.
|
||||||
Each of the sample is weighted by the fragment loading duration.
|
Each of the sample is weighted by the fragment loading duration.
|
||||||
|
|
||||||
|
@ -512,7 +519,7 @@ parameter should be a float greater than 0
|
||||||
#### ```abrEwmaSlowVoD```
|
#### ```abrEwmaSlowVoD```
|
||||||
(default : 15.0)
|
(default : 15.0)
|
||||||
|
|
||||||
Slow bitrate Exponential moving average half-life, used to compute average bitrate for VoD streams
|
Slow bitrate Exponential moving average half-life, used to compute average bitrate for VoD streams.
|
||||||
Half of the estimate is based on the last abrEwmaSlowVoD seconds of sample history.
|
Half of the estimate is based on the last abrEwmaSlowVoD seconds of sample history.
|
||||||
Each of the sample is weighted by the fragment loading duration.
|
Each of the sample is weighted by the fragment loading duration.
|
||||||
|
|
||||||
|
@ -529,14 +536,14 @@ parameter should be a float
|
||||||
#### ```abrBandWidthFactor```
|
#### ```abrBandWidthFactor```
|
||||||
(default : 0.8)
|
(default : 0.8)
|
||||||
|
|
||||||
scale factor to be applied against measured bandwidth average, to determine whether we can stay on current or lower quality level
|
Scale factor to be applied against measured bandwidth average, to determine whether we can stay on current or lower quality level.
|
||||||
If ``` abrBandWidthFactor * bandwidth average < level.bitrate ``` then ABR can switch to that level providing that it is equal or less than current level
|
If ```abrBandWidthFactor * bandwidth average < level.bitrate``` then ABR can switch to that level providing that it is equal or less than current level.
|
||||||
|
|
||||||
#### ```abrBandWidthUpFactor```
|
#### ```abrBandWidthUpFactor```
|
||||||
(default : 0.7)
|
(default : 0.7)
|
||||||
|
|
||||||
scale factor to be applied against measured bandwidth average, to determine whether we can switch up to a higher quality level
|
Scale factor to be applied against measured bandwidth average, to determine whether we can switch up to a higher quality level.
|
||||||
If ``` abrBandWidthUpFactor * bandwidth average < level.bitrate ``` then ABR can switch up to that quality level
|
If ```abrBandWidthUpFactor * bandwidth average < level.bitrate``` then ABR can switch up to that quality level.
|
||||||
|
|
||||||
## Video Binding/Unbinding API
|
## Video Binding/Unbinding API
|
||||||
|
|
||||||
|
@ -764,6 +771,8 @@ url is an array, that might contains several items if failover/redundant streams
|
||||||
|
|
||||||
level detailed infos contains level details retrieved after level playlist parsing, they are specified below :
|
level detailed infos contains level details retrieved after level playlist parsing, they are specified below :
|
||||||
|
|
||||||
|
* protocol version
|
||||||
|
* playlist type
|
||||||
* start sequence number
|
* start sequence number
|
||||||
* end sequence number
|
* end sequence number
|
||||||
* level total duration
|
* level total duration
|
||||||
|
@ -775,6 +784,8 @@ see sample object below, available after corresponding LEVEL_LOADED event has be
|
||||||
|
|
||||||
```js
|
```js
|
||||||
{
|
{
|
||||||
|
version: 3,
|
||||||
|
type: 'VOD', // null if EXT-X-PLAYLIST-TYPE not present
|
||||||
startSN: 0,
|
startSN: 0,
|
||||||
endSN: 50,
|
endSN: 50,
|
||||||
totalduration: 510,
|
totalduration: 510,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hls.js",
|
"name": "hls.js",
|
||||||
"version": "0.5.41",
|
"version": "0.5.42",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||||
"homepage": "https://github.com/dailymotion/hls.js",
|
"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",
|
"name": "hls.js",
|
||||||
"version": "0.5.41",
|
"version": "0.5.42",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||||
"homepage": "https://github.com/dailymotion/hls.js",
|
"homepage": "https://github.com/dailymotion/hls.js",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue