ptzoptics-node-server/pub/js/stream.js

13 lines
301 B
JavaScript

/*jshint esversion: 6 */
let player;
function changeStream() {
player.destroy();
startStream();
}
function startStream() {
const canvas = document.getElementById('streamStage');
player = new JSMpeg.Player('ws://' + document.location.host + '/stream', {canvas:canvas});
}