Browse Source

Force videojs to set cache-control header and add a random query param to each request. Closes #82 I hope.

pull/89/head
Gabe Kangas 5 years ago
parent
commit
515661804a
  1. 12
      webroot/js/player.js

12
webroot/js/player.js

@ -17,7 +17,17 @@ class OwncastPlayer { @@ -17,7 +17,17 @@ class OwncastPlayer {
this.handleEnded = this.handleEnded.bind(this);
this.handleError = this.handleError.bind(this);
}
init() {
videojs.Hls.xhr.beforeRequest = function (options) {
const cachebuster = Math.round(new Date().getTime() / 1000);
options.uri = options.uri + "?omgwtf=" + cachebuster;
options.headers = {
'Cache-Control':'no-cache'
};
return options;
};
this.vjsPlayer = videojs(VIDEO_ID, VIDEO_OPTIONS);
this.addAirplay();
this.vjsPlayer.ready(this.handleReady);
@ -35,9 +45,7 @@ class OwncastPlayer { @@ -35,9 +45,7 @@ class OwncastPlayer {
// play
startPlayer() {
this.log('Start playing');
const cachebuster = Math.round(new Date().getTime() / 1000);
const source = { ...VIDEO_SRC }
source.src = source.src + "?okhi=" + cachebuster
this.vjsPlayer.src(source);
// this.vjsPlayer.play();
};

Loading…
Cancel
Save