Change the poster based on online status
This commit is contained in:
@@ -21,6 +21,14 @@ async function getStatus() {
|
|||||||
? "Stream is online."
|
? "Stream is online."
|
||||||
: "Stream is offline."
|
: "Stream is offline."
|
||||||
|
|
||||||
|
const player = videojs('video');
|
||||||
|
if (app.isOnline) {
|
||||||
|
player.poster('/thumbnail.jpg');
|
||||||
|
} else {
|
||||||
|
// Change this to some kind of offline image.
|
||||||
|
player.poster('/img/logo.png');
|
||||||
|
}
|
||||||
|
|
||||||
app.viewerCount = status.viewerCount;
|
app.viewerCount = status.viewerCount;
|
||||||
app.sessionMaxViewerCount = status.sessionMaxViewerCount;
|
app.sessionMaxViewerCount = status.sessionMaxViewerCount;
|
||||||
app.overallMaxViewerCount = status.overallMaxViewerCount;
|
app.overallMaxViewerCount = status.overallMaxViewerCount;
|
||||||
|
|||||||
Reference in New Issue
Block a user