Added improved settings panel.
This commit is contained in:
parent
306f22aa93
commit
132fdabb29
105 changed files with 3447 additions and 252 deletions
|
|
@ -107,19 +107,19 @@ class player{
|
|||
/**
|
||||
* Tolerance between timestamp from server and actual media before corrective seek for pre-recorded media
|
||||
*/
|
||||
this.syncTolerance = 0.4;
|
||||
this.syncTolerance = localStorage.getItem('syncTolerance');
|
||||
|
||||
/**
|
||||
* Tolerance in livestream delay before corrective seek to live.
|
||||
*
|
||||
* Might seem weird to keep this here instead of the HLS handler, but remember we may want to support other livestream services in the future...
|
||||
*/
|
||||
this.streamSyncTolerance = 2;
|
||||
this.streamSyncTolerance = localStorage.getItem('liveSyncTolerance');
|
||||
|
||||
/**
|
||||
* Forced time to wait between sync checks, heavily decreases chance of seek-banging without reducing syncornization accuracy
|
||||
*/
|
||||
this.syncDelta = 6;
|
||||
this.syncDelta = localStorage.getItem('syncDelta');
|
||||
|
||||
/**
|
||||
* Current Player Volume
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue