owncast/webroot/js/player/player.js

81 lines
1.8 KiB
JavaScript
Raw Normal View History

const streamURL = '/hls/stream.m3u8';
// const streamURL = 'https://goth.land/hls/stream.m3u8'; // Uncomment me to point to remote video
2020-06-18 23:38:06 +02:00
// style hackings
window.VIDEOJS_NO_DYNAMIC_STYLE = true;
2020-06-18 23:38:06 +02:00
// Create the player for the first time
const player = videojs('video', null, function () {
getStatus();
setInterval(getStatus, 5000);
setupPlayerEventHandlers();
})
2020-06-18 23:38:06 +02:00
player.ready(function () {
console.log('Player ready.')
resetPlayer(player);
});
function resetPlayer(player) {
2020-06-19 05:46:00 +02:00
player.reset();
2020-06-18 23:38:06 +02:00
player.src({ type: 'application/x-mpegURL', src: streamURL });
if (app.isOnline) {
player.poster('/thumbnail.jpg');
} else {
// Change this to some kind of offline image.
player.poster('/img/logo.png');
}
}
2020-06-18 23:38:06 +02:00
function setupPlayerEventHandlers() {
const player = videojs('video');
player.on('error', function (e) {
console.log("Player error: ", e);
})
// player.on('loadeddata', function (e) {
// console.log("loadeddata");
// })
player.on('ended', function (e) {
console.log("ended");
resetPlayer(player);
})
//
// player.on('abort', function (e) {
// console.log("abort");
// })
//
// player.on('durationchange', function (e) {
// console.log("durationchange");
// })
//
// player.on('stalled', function (e) {
// console.log("stalled");
// })
//
2020-06-19 05:46:00 +02:00
player.on('playing', function (e) {
2020-06-19 21:19:18 +02:00
if (playerRestartTimer) {
clearTimeout(playerRestartTimer);
}
2020-06-19 05:46:00 +02:00
})
//
// player.on('waiting', function (e) {
// // console.log("waiting");
// })
}
function restartPlayer() {
try {
2020-06-19 05:46:00 +02:00
console.log('restarting')
const player = videojs('video');
2020-06-19 05:46:00 +02:00
player.pause();
player.src(player.src()); // Reload the same video
player.load();
player.play();
} catch (e) {
console.log(e)
}
}