diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2016-01-08 21:01:00 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2016-01-08 21:01:51 +0100 |
commit | 1175c45d11698c474c509592d3984b91adaeace9 (patch) | |
tree | 977a0546c7322c42644dd2539ff6e3c4cfc0ab36 /mediabrowser | |
parent | 807a161a937459c7d8b2d479e12f42ff3da8b96c (diff) | |
download | flask-mediabrowser-1175c45d11698c474c509592d3984b91adaeace9.tar.gz flask-mediabrowser-1175c45d11698c474c509592d3984b91adaeace9.zip |
increase fragment loading timeout from 50s to 2min
fragment duration is 60s, so normally this should never happen
Diffstat (limited to 'mediabrowser')
-rw-r--r-- | mediabrowser/templates/watch.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediabrowser/templates/watch.html b/mediabrowser/templates/watch.html index 7e3c9fd..808e372 100644 --- a/mediabrowser/templates/watch.html +++ b/mediabrowser/templates/watch.html @@ -62,7 +62,7 @@ maxBufferLength: 500, manifestLoadingTimeOut: 20000, levelLoadingTimeOut: 20000, - fragLoadingTimeOut: 50000 + fragLoadingTimeOut: 120000 }; var hls = new Hls(config); hls.loadSource("{{ url_for('mediabrowser.m3u8', path=path) }}"); |