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

13 lines
301 B
JavaScript
Raw Permalink Normal View History

2018-11-02 15:24:39 -04:00
/*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});
2018-11-02 15:24:39 -04:00
}